From 4fa80c251669d25c3ee8812047ae1cd42442a53f Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Fri, 10 May 2019 11:50:04 +0100 Subject: [PATCH] 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. --- src/modules/conf_theme/e_int_config_color_classes.c | 5 +++++ src/modules/conf_theme/e_mod_main.c | 8 +++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/src/modules/conf_theme/e_int_config_color_classes.c b/src/modules/conf_theme/e_int_config_color_classes.c index a4684fae7..af8e6c4a8 100644 --- a/src/modules/conf_theme/e_int_config_color_classes.c +++ b/src/modules/conf_theme/e_int_config_color_classes.c @@ -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; } +*/ diff --git a/src/modules/conf_theme/e_mod_main.c b/src/modules/conf_theme/e_mod_main.c index 6ae097044..1499de933 100644 --- a/src/modules/conf_theme/e_mod_main.c +++ b/src/modules/conf_theme/e_mod_main.c @@ -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);