From 56105f118163c282a95a1559e2ba7962310944bf Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Mon, 5 Apr 2021 15:17:11 +0100 Subject: [PATCH] make the disabling of theme icons better - just return false --- src/bin/edi_theme.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/bin/edi_theme.c b/src/bin/edi_theme.c index 37db13f..ffe9eef 100644 --- a/src/bin/edi_theme.c +++ b/src/bin/edi_theme.c @@ -155,8 +155,6 @@ edi_theme_themes_get(void) const char * edi_theme_icon_path_get(const char *name) { - return name; -/* char *path; const char *icon_path, *directory = PACKAGE_DATA_DIR "/icons"; icon_path = name; @@ -175,7 +173,6 @@ edi_theme_icon_path_get(const char *name) } return icon_path; - */ } void @@ -187,5 +184,6 @@ edi_theme_internal_icons_set(Eina_Bool enabled) Eina_Bool edi_theme_internal_icons_get(void) { - return _edi_theme_internal_icons; + return EINA_FALSE; +// return _edi_theme_internal_icons; }