Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- diff --git a/src/neutrino.cpp b/src/neutrino.cpp
- index 15023c7..57a41f9 100644
- --- a/src/neutrino.cpp
- +++ b/src/neutrino.cpp
- @@ -1053,6 +1053,11 @@ void CNeutrinoApp::upgradeSetup(const char * fname)
- configfile.deleteKey("screen_width");
- configfile.deleteKey("screen_height");
- }
- + if (g_settings.version_pseudo < "20170913110000")
- + {
- + //remove easymenu
- + configfile.deleteKey("easymenu");
- + }
- g_settings.version_pseudo = NEUTRINO_VERSION_PSEUDO;
- configfile.setString("version_pseudo", g_settings.version_pseudo);
- @@ -1070,11 +1075,6 @@ void CNeutrinoApp::saveSetup(const char * fname)
- if(!scansettings.saveSettings(NEUTRINO_SCAN_SETTINGS_FILE)) {
- dprintf(DEBUG_NORMAL, "error while saving scan-settings!\n");
- }
- - if (g_settings.version_pseudo < "20170913110000")
- - {
- - //remove easymenu
- - configfile.deleteKey("easymenu");
- - }
- //theme/color options
- CThemes::setTheme(configfile);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement