summaryrefslogtreecommitdiff
path: root/apps/gui/bitmap
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/bitmap')
-rw-r--r--apps/gui/bitmap/list.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/gui/bitmap/list.c b/apps/gui/bitmap/list.c
index 986fcaea69..66e93fd302 100644
--- a/apps/gui/bitmap/list.c
+++ b/apps/gui/bitmap/list.c
@@ -84,11 +84,10 @@ static bool draw_title(struct screen *display, struct gui_synclist *list)
84 title_icon.width = get_icon_width(screen) + ICON_PADDING * 2; 84 title_icon.width = get_icon_width(screen) + ICON_PADDING * 2;
85 if (VP_IS_RTL(&title_icon)) 85 if (VP_IS_RTL(&title_icon))
86 { 86 {
87 title_icon.x = title_text_vp->width - title_icon.width; 87 title_icon.x += title_text_vp->width - title_icon.width;
88 } 88 }
89 else 89 else
90 { 90 {
91 title_icon.x = ICON_PADDING;
92 title_text_vp->x += title_icon.width; 91 title_text_vp->x += title_icon.width;
93 } 92 }
94 title_text_vp->width -= title_icon.width; 93 title_text_vp->width -= title_icon.width;