summaryrefslogtreecommitdiff
path: root/apps/gui/bitmap/list.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/bitmap/list.c')
-rw-r--r--apps/gui/bitmap/list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/gui/bitmap/list.c b/apps/gui/bitmap/list.c
index 4323bb0350..ec12ee5367 100644
--- a/apps/gui/bitmap/list.c
+++ b/apps/gui/bitmap/list.c
@@ -331,7 +331,7 @@ void list_draw(struct screen *display, struct gui_synclist *list)
331 } 331 }
332 /* do the icon */ 332 /* do the icon */
333 display->set_viewport(&list_icons); 333 display->set_viewport(&list_icons);
334 if (list->callback_get_item_icon && global_settings.show_icons) 334 if (list->callback_get_item_icon != NULL)
335 { 335 {
336 screen_put_icon_with_offset(display, show_cursor?1:0, 336 screen_put_icon_with_offset(display, show_cursor?1:0,
337 (line),show_cursor?ICON_PADDING:0,draw_offset, 337 (line),show_cursor?ICON_PADDING:0,draw_offset,
@@ -468,7 +468,7 @@ unsigned gui_synclist_do_touchscreen(struct gui_synclist * gui_list)
468 return ACTION_NONE; 468 return ACTION_NONE;
469 469
470 /* x and y are relative to info_vp */ 470 /* x and y are relative to info_vp */
471 if (global_settings.show_icons) 471 if (gui_list->callback_get_item_icon != NULL)
472 icon_width += get_icon_width(screen); 472 icon_width += get_icon_width(screen);
473 if (show_cursor) 473 if (show_cursor)
474 icon_width += get_icon_width(screen); 474 icon_width += get_icon_width(screen);