summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2004-06-27 09:51:42 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2004-06-27 09:51:42 +0000
commit5347b1c60f5c986b9b74e7b0db4cdec565c27bbf (patch)
treea0912a1423753d2ec8522feb0f43de03833c1718 /apps
parentbe37431fe48ef5538390e71006bf76d16231642f (diff)
downloadrockbox-5347b1c60f5c986b9b74e7b0db4cdec565c27bbf.tar.gz
rockbox-5347b1c60f5c986b9b74e7b0db4cdec565c27bbf.zip
Fixed the margins on the bookmark prompts, fixes bug #887512
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4809 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/bookmark.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/bookmark.c b/apps/bookmark.c
index 5d717e4423..aa03004a35 100644
--- a/apps/bookmark.c
+++ b/apps/bookmark.c
@@ -240,6 +240,7 @@ bool bookmark_autobookmark(void)
/* Prompting user to confirm bookmark creation */
lcd_clear_display();
#ifdef HAVE_LCD_BITMAP
+ lcd_setmargins(0, STATUSBAR_HEIGHT);
lcd_puts(0,0, str(LANG_AUTO_BOOKMARK_QUERY));
lcd_puts(0,1, str(LANG_CONFIRM_WITH_PLAY_RECORDER));
lcd_puts(0,2, str(LANG_CANCEL_WITH_ANY_RECORDER));
@@ -494,6 +495,7 @@ bool bookmark_autoload(char* file)
/* Prompting user to confirm bookmark load */
lcd_clear_display();
#ifdef HAVE_LCD_BITMAP
+ lcd_setmargins(0, STATUSBAR_HEIGHT);
lcd_puts_scroll(0,0, str(LANG_BOOKMARK_AUTOLOAD_QUERY));
lcd_puts(0,1, str(LANG_CONFIRM_WITH_PLAY_RECORDER));
lcd_puts(0,2, str(LANG_BOOKMARK_SELECT_LIST_BOOKMARKS));