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!!!
This commit is contained in:
Al Poole 2017-12-15 19:15:27 +00:00
parent cf80e5d2b2
commit cb66473320
1 changed files with 6 additions and 0 deletions

View File

@ -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;
}