colorclass config dialog - it's broken. disable it

it just does nothing but list colorclasses from the theme. can't edit
them or see them. no point having it there. this should get fixed up
later, but for now - disable it.
This commit is contained in:
Carsten Haitzler 2019-05-10 11:50:04 +01:00
parent e912e0a087
commit 4fa80c2516
2 changed files with 10 additions and 3 deletions

View File

@ -1,5 +1,9 @@
#include "e.h"
/*
* This is currently broken and does nothing other than list colorclasses
* so no point having a broken dialog in E.
static char *
_translate(char *str)
{
@ -59,3 +63,4 @@ e_int_config_color_classes(Evas_Object *parent EINA_UNUSED, const char *params E
"preferences-desktop-color", 0, v, NULL);
return cfd;
}
*/

View File

@ -68,9 +68,11 @@ e_modapi_init(E_Module *m)
e_configure_registry_item_add("appearance/xsettings", 20, _("Application Theme"), NULL,
"preferences-desktop-theme",
e_int_config_xsettings);
e_configure_registry_item_add("appearance/colors", 30, _("Colors"), NULL,
"preferences-desktop-color",
e_int_config_color_classes);
// This is currently broken and does nothing other than list colorclasses
// so no point having a broken dialog in E
// e_configure_registry_item_add("appearance/colors", 30, _("Colors"), NULL,
// "preferences-desktop-color",
// e_int_config_color_classes);
e_configure_registry_item_add("appearance/fonts", 40, _("Fonts"), NULL,
"preferences-desktop-font",
e_int_config_fonts);