fixed spaces

This commit is contained in:
NightlyFox 2018-09-23 18:59:41 -05:00
parent 2a2128c80e
commit 3abb799c61
2 changed files with 9 additions and 10 deletions

View File

@ -309,7 +309,7 @@ bool menuEntryLoad(menuEntry_s* me, const char* name, bool shortcut) {
strncpy(me->name, name, sizeof(me->name)-1); strncpy(me->name, name, sizeof(me->name)-1);
if(!config_setting_lookup_string(themeInfo, "author", &author)) if(!config_setting_lookup_string(themeInfo, "author", &author))
author = textGetString(StrId_DefaultPublisher); author = textGetString(StrId_DefaultPublisher);
if(!config_setting_lookup_string(themeInfo, "version", &version))\ if(!config_setting_lookup_string(themeInfo, "version", &version))
version = "1.0.0"; version = "1.0.0";
} }
} }

View File

@ -14,8 +14,7 @@ char *menuGetRootPath() {
return rootPath; return rootPath;
} }
void launchMenuEntryTask(menuEntry_s* arg) void launchMenuEntryTask(menuEntry_s* arg) {
{
menuEntry_s* me = arg; menuEntry_s* me = arg;
if (me->type == ENTRY_TYPE_FOLDER) if (me->type == ENTRY_TYPE_FOLDER)
menuScan(me->path); menuScan(me->path);
@ -40,24 +39,24 @@ void launchMenuNetloaderTask() {
if(netloader_activate() == 0) hbmenu_state = HBMENU_NETLOADER_ACTIVE; if(netloader_activate() == 0) hbmenu_state = HBMENU_NETLOADER_ACTIVE;
} }
void launchMenuBackTask() void launchMenuBackTask() {
{
if(hbmenu_state == HBMENU_NETLOADER_ACTIVE) { if(hbmenu_state == HBMENU_NETLOADER_ACTIVE) {
netloader_deactivate(); netloader_deactivate();
hbmenu_state = HBMENU_DEFAULT; hbmenu_state = HBMENU_DEFAULT;
}else if(hbmenu_state == HBMENU_THEME_MENU){ }
else if(hbmenu_state == HBMENU_THEME_MENU) {
hbmenu_state = HBMENU_DEFAULT; hbmenu_state = HBMENU_DEFAULT;
menuScan(rootPath); menuScan(rootPath);
} }
else { else {
menuScan(".."); menuScan("..");
} }
} }
void launchApplyThemeTask(menuEntry_s* arg){ void launchApplyThemeTask(menuEntry_s* arg) {
config_t cfg = {0}; config_t cfg = {0};
config_init(&cfg); config_init(&cfg);
if(!config_read_file(&cfg, arg->path)){ if(!config_read_file(&cfg, arg->path)) {
menuCreateMsgBox(780, 300, "Something went wrong, and the theme could not be loaded!"); menuCreateMsgBox(780, 300, "Something went wrong, and the theme could not be loaded!");
return; return;
} }
@ -67,7 +66,7 @@ void launchApplyThemeTask(menuEntry_s* arg){
#endif #endif
strncat(tmp_path, "config/nx-hbmenu/theme.cfg", sizeof(tmp_path)-2); strncat(tmp_path, "config/nx-hbmenu/theme.cfg", sizeof(tmp_path)-2);
if(!config_write_file(&cfg, tmp_path)){ if(!config_write_file(&cfg, tmp_path)) {
menuCreateMsgBox(780, 300, "Something went wrong, and the theme could not be applied!"); menuCreateMsgBox(780, 300, "Something went wrong, and the theme could not be applied!");
return; return;
} }