make the disabling of theme icons better - just return false

This commit is contained in:
Carsten Haitzler 2021-04-05 15:17:11 +01:00
parent 61a9a7ff0a
commit 56105f1181
1 changed files with 2 additions and 4 deletions

View File

@ -155,8 +155,6 @@ edi_theme_themes_get(void)
const char * const char *
edi_theme_icon_path_get(const char *name) edi_theme_icon_path_get(const char *name)
{ {
return name;
/*
char *path; char *path;
const char *icon_path, *directory = PACKAGE_DATA_DIR "/icons"; const char *icon_path, *directory = PACKAGE_DATA_DIR "/icons";
icon_path = name; icon_path = name;
@ -175,7 +173,6 @@ edi_theme_icon_path_get(const char *name)
} }
return icon_path; return icon_path;
*/
} }
void void
@ -187,5 +184,6 @@ edi_theme_internal_icons_set(Eina_Bool enabled)
Eina_Bool Eina_Bool
edi_theme_internal_icons_get(void) edi_theme_internal_icons_get(void)
{ {
return _edi_theme_internal_icons; return EINA_FALSE;
// return _edi_theme_internal_icons;
} }