discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=e4a89cf0ed781d8693f46c6ecd313d216a2c232c
commit e4a89cf0ed781d8693f46c6ecd313d216a2c232c 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) { --
