summaryrefslogtreecommitdiff
path: root/apps/gui/bitmap
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/bitmap')
-rw-r--r--apps/gui/bitmap/list.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/gui/bitmap/list.c b/apps/gui/bitmap/list.c
index 191446e186..ede0de8881 100644
--- a/apps/gui/bitmap/list.c
+++ b/apps/gui/bitmap/list.c
@@ -277,6 +277,7 @@ void list_draw(struct screen *display, struct gui_synclist *list)
277 list_icons.x += indent; 277 list_icons.x += indent;
278 list_text_vp->x += indent; 278 list_text_vp->x += indent;
279 } 279 }
280 list_icons.width -= indent;
280 list_text_vp->width -= indent; 281 list_text_vp->width -= indent;
281 } 282 }
282 283
@@ -392,6 +393,7 @@ void list_draw(struct screen *display, struct gui_synclist *list)
392 list_icons.x -= indent; 393 list_icons.x -= indent;
393 list_text_vp->x -= indent; 394 list_text_vp->x -= indent;
394 } 395 }
396 list_icons.width += indent;
395 list_text_vp->width += indent; 397 list_text_vp->width += indent;
396 } 398 }
397 } 399 }