discomfitor pushed a commit to branch enlightenment-0.21. http://git.enlightenment.org/core/enlightenment.git/commit/?id=099b50859aa9cf1ddb344dea961e02c1ef617cf9
commit 099b50859aa9cf1ddb344dea961e02c1ef617cf9 Author: Mike Blumenkrantz <[email protected]> Date: Fri Feb 24 14:15:42 2017 -0500 save config when toggling option to disable startup splash broken since 2013 --- src/modules/conf_theme/e_int_config_theme.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/modules/conf_theme/e_int_config_theme.c b/src/modules/conf_theme/e_int_config_theme.c index 7361188..d750715 100644 --- a/src/modules/conf_theme/e_int_config_theme.c +++ b/src/modules/conf_theme/e_int_config_theme.c @@ -761,6 +761,8 @@ _basic_apply_data(E_Config_Dialog *cfd EINA_UNUSED, E_Config_Dialog_Data *cfdata file = ecore_file_file_get(cfdata->theme); name = ecore_file_strip_ext(file); + if (!!e_config->show_splash != !!cfdata->show_splash) + e_config_save_queue(); e_config->show_splash = cfdata->show_splash; if (name) { --
