From cad54bd256bca89c9d6510cc48b9742635e2e644 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Mon, 22 Jun 2020 22:14:20 +0200 Subject: [PATCH] glcdthemes: fix typo Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/01367d926fb1f96030f19c8b602b1da0aeda703a Author: vanhofen Date: 2020-06-22 (Mon, 22 Jun 2020) Origin message was: ------------------ - glcdthemes: fix typo --- src/gui/glcdthemes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/glcdthemes.cpp b/src/gui/glcdthemes.cpp index 0a2e4fdc4..bb403784a 100644 --- a/src/gui/glcdthemes.cpp +++ b/src/gui/glcdthemes.cpp @@ -95,7 +95,7 @@ int CGLCDThemes::exec(CMenuTarget* parent, const std::string & actionKey) readFile(((std::string)THEMESDIR_VAR + "/oled/" + themeFile + FILE_SUFFIX).c_str()); } else - readFile(((std::string)THEMESDIR + "/oled" + themeFile + FILE_SUFFIX).c_str()); + readFile(((std::string)THEMESDIR + "/oled/" + themeFile + FILE_SUFFIX).c_str()); g_settings.glcd_theme_name = themeFile; } OnAfterSelectTheme();