raster pushed a commit to branch master. http://git.enlightenment.org/apps/edi.git/commit/?id=56105f118163c282a95a1559e2ba7962310944bf
commit 56105f118163c282a95a1559e2ba7962310944bf Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com> Date: Mon Apr 5 15:17:11 2021 +0100 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; } --