From 26ea9f0ea09c09050076487069fdda34ee211334 Mon Sep 17 00:00:00 2001 From: Robin Jones Date: Sat, 23 Dec 2023 00:54:04 +0000 Subject: [PATCH] Improve settings editor text (#79) ## Description Until settings editor is able to change settings, tell users what to do. ## Motivation and Context Improve user experience. ## How Has This Been Tested? Tested locally. ## Screenshots ## Types of changes - [ ] Improvement (non-breaking change that adds a new feature) - [ ] Bug fix (fixes an issue) - [ ] Breaking change (breaking change) - [ ] Config and build (change in the configuration and build system, has no impact on code or features) ## Checklist: - [ ] My code follows the code style of this project. - [ ] My change requires a change to the documentation. - [ ] I have updated the documentation accordingly. - [ ] I have added tests to cover my changes. - [ ] All new and existing tests passed. Signed-off-by: GITHUB_USER --- src/menu/views/settings_editor.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/menu/views/settings_editor.c b/src/menu/views/settings_editor.c index 5538a98e..c624ba1a 100644 --- a/src/menu/views/settings_editor.c +++ b/src/menu/views/settings_editor.c @@ -31,6 +31,8 @@ static void draw (menu_t *menu, surface_t *d) { ALIGN_LEFT, VALIGN_TOP, "\n" "\n" + "To change the settings, please adjust them\n" + "directly in the 'menu/config.ini' file.\n\n" "pal60_enabled: %s\n" "hidden_files_enabled: %s\n" "default_directory: %s\n"