diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2003-12-20 22:15:45 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2003-12-20 22:15:45 +0000 |
| commit | 8dad7c2f31f8151828f84ec1f200d6af8ce43d78 (patch) | |
| tree | 43d4065f8464ed40b3893d10856838245c06a9da | |
| parent | a5e1d06354fe1cb1dc12edd45b7f9ccb632df3e4 (diff) | |
| download | rockbox-8dad7c2f31f8151828f84ec1f200d6af8ce43d78.zip rockbox-8dad7c2f31f8151828f84ec1f200d6af8ce43d78.tar.gz rockbox-8dad7c2f31f8151828f84ec1f200d6af8ce43d78.tar.bz2 rockbox-8dad7c2f31f8151828f84ec1f200d6af8ce43d78.tar.xz | |
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
| -rw-r--r-- | apps/recorder/recording.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c index ab36e03..d94508e 100644 --- a/apps/recorder/recording.c +++ b/apps/recorder/recording.c @@ -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; } |