diff options
Diffstat (limited to 'apps/gui/bitmap/list.c')
| -rw-r--r-- | apps/gui/bitmap/list.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/gui/bitmap/list.c b/apps/gui/bitmap/list.c index 66e93fd..dd4d41f 100644 --- a/apps/gui/bitmap/list.c +++ b/apps/gui/bitmap/list.c @@ -173,8 +173,7 @@ void list_draw(struct screen *display, struct gui_synclist *list) /* setup icon placement */ list_icons = *list_text_vp; - int icon_count = global_settings.show_icons && - (list->callback_get_item_icon != NULL) ? 1 : 0; + int icon_count = (list->callback_get_item_icon != NULL) ? 1 : 0; if (show_cursor) icon_count++; if (icon_count) |