diff options
| author | Teruaki Kawashima <teru@rockbox.org> | 2010-10-06 12:35:37 +0000 |
|---|---|---|
| committer | Teruaki Kawashima <teru@rockbox.org> | 2010-10-06 12:35:37 +0000 |
| commit | 53a936ab833ea3cfd460d4713f45a8ab98e6620a (patch) | |
| tree | e46f4cdea3b31eb355b60ba97969894c9c3f5314 /apps/plugins/text_viewer/text_viewer.c | |
| parent | 90e8815673bc949c3ef1dbf8904b50c8dfd023f6 (diff) | |
| download | rockbox-53a936ab833ea3cfd460d4713f45a8ab98e6620a.zip rockbox-53a936ab833ea3cfd460d4713f45a8ab98e6620a.tar.gz rockbox-53a936ab833ea3cfd460d4713f45a8ab98e6620a.tar.bz2 rockbox-53a936ab833ea3cfd460d4713f45a8ab98e6620a.tar.xz | |
text viewer:
-remove 1px gap at the top and bottom of the screen to maximize the draw erea, especially for small screens.
-fix trashes on the vertical scrollbar when scrolled the column left/right.
-fix bug that vertical scrllbar sometimes goes up while scrolling down.
-don't chage displayed line after closing menu.
-use simplelist to select bookmark to make it work better.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28213 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/text_viewer/text_viewer.c')
| -rw-r--r-- | apps/plugins/text_viewer/text_viewer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/text_viewer/text_viewer.c b/apps/plugins/text_viewer/text_viewer.c index 5d06d4b..3c04499 100644 --- a/apps/plugins/text_viewer/text_viewer.c +++ b/apps/plugins/text_viewer/text_viewer.c @@ -60,7 +60,7 @@ enum plugin_status plugin_start(const void* file) atexit(tv_exit); while (!done) { #ifdef HAVE_LCD_BITMAP - if (rb->global_settings->statusbar != STATUSBAR_OFF && preferences->statusbar) + if (preferences->statusbar) rb->send_event(GUI_EVENT_ACTIONUPDATE, NULL); #endif |