1
0
Fork 0
forked from len0rd/rockbox

Fixed the display corruption in the recording screen when the status bar is disabled

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4169 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2003-12-20 22:15:45 +00:00
parent a5e1d06354
commit 8dad7c2f31

View file

@ -313,6 +313,9 @@ bool recording_screen(void)
set_gain();
update_countdown = 1; /* Update immediately */
lcd_setfont(FONT_SYSFIXED);
lcd_setmargins(global_settings.invert_cursor ? 0 : w, 8);
break;
case BUTTON_F2:
@ -349,6 +352,8 @@ bool recording_screen(void)
have_recorded = true; /* Refreshes the browser later on */
done = true;
}
lcd_setfont(FONT_SYSFIXED);
lcd_setmargins(global_settings.invert_cursor ? 0 : w, 8);
break;
}