Revert "elm config: hide theme and profile config in gui when running in enlightenment"

This reverts commit 0b6aade84d.

Let's not do this as it makes the tool harder to test AND actually
removes vital features even under E. elementary_Config is really meant
as a demo config tool. not a good usable one. Ultimately E should
actually do all the good things in elm config so its just some debug
tool then or one for other non-e desktops to use.
This commit is contained in:
Carsten Haitzler 2018-10-11 12:43:50 +01:00
parent 01109a8c7b
commit 7d7ce5dee5
1 changed files with 4 additions and 6 deletions

View File

@ -4223,18 +4223,16 @@ _status_config_full(Evas_Object *win,
tb_it = elm_toolbar_item_append(tb, "preferences-desktop-display",
"Sizing", _cf_sizing, win);
if (!eina_streq(getenv("DESKTOP"), "Enlightenment"))
elm_toolbar_item_append(tb, "preferences-desktop-theme",
"Theme", _cf_themes, win);
elm_toolbar_item_append(tb, "preferences-desktop-theme",
"Theme", _cf_themes, win);
elm_toolbar_item_append(tb, "preferences-color",
"Icons", _cf_icons, win);
elm_toolbar_item_append(tb, "preferences-desktop-font",
"Fonts", _cf_fonts, win);
elm_toolbar_item_append(tb, "preferences-desktop-multimedia",
"Audio", _cf_audio, win);
if (!eina_streq(getenv("DESKTOP"), "Enlightenment"))
elm_toolbar_item_append(tb, "preferences-profile",
"Profiles", _cf_profiles, win);
elm_toolbar_item_append(tb, "preferences-profile",
"Profiles", _cf_profiles, win);
elm_toolbar_item_append(tb, NULL, "Scrolling", _cf_scrolling, win);
elm_toolbar_item_append(tb, NULL, "Rendering", _cf_rendering, win);
elm_toolbar_item_append(tb, NULL, "Caches", _cf_caches, win);