diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-05-31 11:16:25 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-05-31 11:16:25 +0000 |
| commit | 39526925710c6bb2b8abb3130c95b895ea3b6ee8 (patch) | |
| tree | a518f86fee5390a3d46828c49a8dfdc10e0255c7 /apps/tree.c | |
| parent | aa9776404f8a9ba5197a654751d332ae1791d1f0 (diff) | |
| download | rockbox-39526925710c6bb2b8abb3130c95b895ea3b6ee8.zip rockbox-39526925710c6bb2b8abb3130c95b895ea3b6ee8.tar.gz rockbox-39526925710c6bb2b8abb3130c95b895ea3b6ee8.tar.bz2 rockbox-39526925710c6bb2b8abb3130c95b895ea3b6ee8.tar.xz | |
Turn off double-height when displaying file list
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@853 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tree.c')
| -rw-r--r-- | apps/tree.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/tree.c b/apps/tree.c index 822172a..401d5de 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -126,7 +126,9 @@ static int showdir(char *path, int start) lastdir[sizeof(lastdir)-1] = 0; qsort(dircacheptr,filesindir,sizeof(struct entry*),compare); } - +#ifdef HAVE_NEW_CHARCELL_LCD + lcd_double_height(false); +#endif lcd_clear_display(); #ifdef HAVE_LCD_BITMAP lcd_putsxy(0,0, "[Browse]",0); |