diff options
author | Teruaki Kawashima <teru@rockbox.org> | 2010-03-06 15:02:22 +0000 |
---|---|---|
committer | Teruaki Kawashima <teru@rockbox.org> | 2010-03-06 15:02:22 +0000 |
commit | 70f6e62769c60f66a826fa22c8f2ffec3c0d37af (patch) | |
tree | 14152b41fa50061aa61c0209814c943626a8a9e5 /apps/recorder | |
parent | 1fbdd913337cbf235ebe3a2cf52f73b661f3b1cf (diff) |
fix cutoff of f2/f3_rec_screen in the recording screen.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25046 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder')
-rw-r--r-- | apps/recorder/recording.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c index 2c8e473c11..bcb9169c57 100644 --- a/apps/recorder/recording.c +++ b/apps/recorder/recording.c @@ -2101,6 +2101,7 @@ static bool f2_rec_screen(void) FOR_NB_SCREENS(i) { + screens[i].set_viewport(NULL); screens[i].setfont(FONT_SYSFIXED); screens[i].getstringsize("A",&w,&h); } @@ -2236,6 +2237,7 @@ static bool f3_rec_screen(void) FOR_NB_SCREENS(i) { + screens[i].set_viewport(NULL); screens[i].setfont(FONT_SYSFIXED); screens[i].getstringsize("A",&w,&h); } |