- Status Closed
- Percent Complete
- Task Type Bugs
- Category User Interface
- Assigned To No-one
- Operating System
- Severity Low
- Priority Very Low
- Reported Version Daily build (which?)
- Due in Version Undecided
-
Due Date
Undecided
- Votes
- Private
Attached to Project: Rockbox
Opened by projekt21 - 2004-01-30
Last edited by linusnielsen - 2004-11-05
Opened by projekt21 - 2004-01-30
Last edited by linusnielsen - 2004-11-05
FS#1977 - Display Bug in bookmark_autoload
The current cvs version has a display bug in
bookmark_autoload on my
FMR. Looks like the left margin is incorrect (if
scrollbar and icons are
enabled): The fix is manually setting the margin to 0.
— bookmark.c.orig Thu Jan 29 11:48:47 2004
+++ bookmark.c Thu Jan 29 11:50:49 2004
@@ -493,6 +493,7 @@
/* Prompting user to confirm bookmark load */ lcd_clear_display();
#ifdef HAVE_LCD_BITMAP
+ lcd_setmargins(0, STATUSBAR_HEIGHT); /* alex */
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));
Can you confirm this?
Loading...
Available keyboard shortcuts
- Alt + ⇧ Shift + l Login Dialog / Logout
- Alt + ⇧ Shift + a Add new task
- Alt + ⇧ Shift + m My searches
- Alt + ⇧ Shift + t focus taskid search
Tasklist
- o open selected task
- j move cursor down
- k move cursor up
Task Details
- n Next task
- p Previous task
- Alt + ⇧ Shift + e ↵ Enter Edit this task
- Alt + ⇧ Shift + w watch task
- Alt + ⇧ Shift + y Close Task
Task Editing
- Alt + ⇧ Shift + s save task
This is (finally) fixed in CVS. Thanks for reporting.