diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2009-02-02 09:24:24 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2009-02-02 09:24:24 +0000 |
commit | 92035f5cdd835bb72975a581dbe63be60f15f477 (patch) | |
tree | f395b4eb645a13ee37aaf60d2cbe6979e61aada4 /apps | |
parent | 28dbd584fb28c9e64987744c5ecbe232982f0762 (diff) |
Accept FS#9836 which fixes a bit of a display glitch in the colour chooser (Thanks Teruaki)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19906 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/gui/color_picker.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/color_picker.c b/apps/gui/color_picker.c index 827be69460..026ae82c4c 100644 --- a/apps/gui/color_picker.c +++ b/apps/gui/color_picker.c @@ -250,7 +250,7 @@ static void draw_screen(struct screen *display, char *title, /* Draw label */ buf[0] = str(LANG_COLOR_RGB_LABELS)[i]; buf[1] = '\0'; - display->putsxy(slider_left - display->getcharwidth() - + display->putsxy(slider_left - max_label_width - SLIDER_MARGIN_LEFT, text_top, buf); /* Draw color value */ |