From cb66473320bbde536aa2cc0bc2b06f2ccbbf565a Mon Sep 17 00:00:00 2001 From: Al Poole Date: Fri, 15 Dec 2017 19:15:27 +0000 Subject: [PATCH] conf_theme: show appropriate background list. If a new install show the system wallpapers. If a user supplied wallpaper show the list of user supplied. If a system, show the system list of wallpapers. On a fresh install on first use people realise there are wallpapers!!! --- src/modules/conf_theme/e_int_config_wallpaper.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/modules/conf_theme/e_int_config_wallpaper.c b/src/modules/conf_theme/e_int_config_wallpaper.c index 599c6662e..3342a28e3 100644 --- a/src/modules/conf_theme/e_int_config_wallpaper.c +++ b/src/modules/conf_theme/e_int_config_wallpaper.c @@ -480,6 +480,12 @@ _basic_create(E_Config_Dialog *cfd EINA_UNUSED, Evas *evas, E_Config_Dialog_Data evas_object_show(ow); e_widget_table_object_append(ot, oa, 0, 2, 2, 1, 1, 1, 1, 1); e_widget_list_object_append(o, ot, 1, 1, 0.5); + + if (!cfdata->bg || cfdata->fmdir == 1) + e_widget_radio_toggle_set(cfdata->o_system, EINA_TRUE); + else + e_widget_radio_toggle_set(cfdata->o_personal, EINA_TRUE); + return o; }