changed hbmenuConfig to settings

This commit is contained in:
NightlyFox 2018-09-27 23:46:16 -05:00
parent 56f495f8fc
commit 3c548f6621

View File

@ -150,7 +150,7 @@ void GetThemePathFromConfig(char* themePath) {
bool good_cfg = config_read_file(&cfg, tmp_path); bool good_cfg = config_read_file(&cfg, tmp_path);
if(good_cfg) { if(good_cfg) {
setting = config_lookup(&cfg, "hbmenuConfig"); setting = config_lookup(&cfg, "settings");
if(setting != NULL){ if(setting != NULL){
if(config_setting_lookup_string(setting, "themePath", &tmpThemePath)) if(config_setting_lookup_string(setting, "themePath", &tmpThemePath))
strncpy(themePath, tmpThemePath, PATH_MAX-1); strncpy(themePath, tmpThemePath, PATH_MAX-1);
@ -175,7 +175,7 @@ void SetThemePathToConfig(const char* themePath) {
bool good_cfg = config_read_file(&cfg, settingPath); bool good_cfg = config_read_file(&cfg, settingPath);
if(good_cfg) { if(good_cfg) {
group = config_lookup(&cfg, "hbmenuConfig"); group = config_lookup(&cfg, "settings");
if(group != NULL) if(group != NULL)
setting = config_setting_lookup(group, "themePath"); setting = config_setting_lookup(group, "themePath");
if(setting != NULL) if(setting != NULL)
@ -183,7 +183,7 @@ void SetThemePathToConfig(const char* themePath) {
} else { } else {
root = config_root_setting(&cfg); root = config_root_setting(&cfg);
if(root != NULL) if(root != NULL)
group = config_setting_add(root, "hbmenuConfig", CONFIG_TYPE_GROUP); group = config_setting_add(root, "settings", CONFIG_TYPE_GROUP);
if(group != NULL) if(group != NULL)
setting = config_setting_add(group, "themePath", CONFIG_TYPE_STRING); setting = config_setting_add(group, "themePath", CONFIG_TYPE_STRING);
if(setting != NULL) if(setting != NULL)