diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-06-27 09:51:42 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-06-27 09:51:42 +0000 |
| commit | 5347b1c60f5c986b9b74e7b0db4cdec565c27bbf (patch) | |
| tree | a0912a1423753d2ec8522feb0f43de03833c1718 | |
| parent | be37431fe48ef5538390e71006bf76d16231642f (diff) | |
| download | rockbox-5347b1c60f5c986b9b74e7b0db4cdec565c27bbf.zip rockbox-5347b1c60f5c986b9b74e7b0db4cdec565c27bbf.tar.gz rockbox-5347b1c60f5c986b9b74e7b0db4cdec565c27bbf.tar.bz2 rockbox-5347b1c60f5c986b9b74e7b0db4cdec565c27bbf.tar.xz | |
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
| -rw-r--r-- | apps/bookmark.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/bookmark.c b/apps/bookmark.c index 5d717e4..aa03004 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)); |