summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2003-12-20 22:15:45 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2003-12-20 22:15:45 +0000
commit8dad7c2f31f8151828f84ec1f200d6af8ce43d78 (patch)
tree43d4065f8464ed40b3893d10856838245c06a9da /apps
parenta5e1d06354fe1cb1dc12edd45b7f9ccb632df3e4 (diff)
downloadrockbox-8dad7c2f31f8151828f84ec1f200d6af8ce43d78.tar.gz
rockbox-8dad7c2f31f8151828f84ec1f200d6af8ce43d78.zip
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
Diffstat (limited to 'apps')
-rw-r--r--apps/recorder/recording.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index ab36e032df..d94508e547 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -313,6 +313,9 @@ bool recording_screen(void)
313 313
314 set_gain(); 314 set_gain();
315 update_countdown = 1; /* Update immediately */ 315 update_countdown = 1; /* Update immediately */
316
317 lcd_setfont(FONT_SYSFIXED);
318 lcd_setmargins(global_settings.invert_cursor ? 0 : w, 8);
316 break; 319 break;
317 320
318 case BUTTON_F2: 321 case BUTTON_F2:
@@ -349,6 +352,8 @@ bool recording_screen(void)
349 have_recorded = true; /* Refreshes the browser later on */ 352 have_recorded = true; /* Refreshes the browser later on */
350 done = true; 353 done = true;
351 } 354 }
355 lcd_setfont(FONT_SYSFIXED);
356 lcd_setmargins(global_settings.invert_cursor ? 0 : w, 8);
352 break; 357 break;
353 } 358 }
354 359