summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>2019-05-10 11:50:04 +0100
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2019-05-10 11:50:04 +0100
commit4fa80c251669d25c3ee8812047ae1cd42442a53f (patch)
tree37fe653e1e74ce588242a29391a113efbf8046f8
parente912e0a087e545b5c0fc71c7a3546a6c8efdfde1 (diff)
downloadenlightenment-4fa80c251669d25c3ee8812047ae1cd42442a53f.tar.gz
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.
-rw-r--r--src/modules/conf_theme/e_int_config_color_classes.c5
-rw-r--r--src/modules/conf_theme/e_mod_main.c8
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 a4684fae79..af8e6c4a87 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 6ae0970449..1499de9331 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);