summaryrefslogtreecommitdiff
path: root/apps/plugins/text_viewer/text_viewer.c
diff options
context:
space:
mode:
authorTeruaki Kawashima <teru@rockbox.org>2010-10-06 12:35:37 +0000
committerTeruaki Kawashima <teru@rockbox.org>2010-10-06 12:35:37 +0000
commit53a936ab833ea3cfd460d4713f45a8ab98e6620a (patch)
treee46f4cdea3b31eb355b60ba97969894c9c3f5314 /apps/plugins/text_viewer/text_viewer.c
parent90e8815673bc949c3ef1dbf8904b50c8dfd023f6 (diff)
downloadrockbox-53a936ab833ea3cfd460d4713f45a8ab98e6620a.tar.gz
rockbox-53a936ab833ea3cfd460d4713f45a8ab98e6620a.zip
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.c2
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 5d06d4b477..3c04499b18 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)
60 atexit(tv_exit); 60 atexit(tv_exit);
61 while (!done) { 61 while (!done) {
62#ifdef HAVE_LCD_BITMAP 62#ifdef HAVE_LCD_BITMAP
63 if (rb->global_settings->statusbar != STATUSBAR_OFF && preferences->statusbar) 63 if (preferences->statusbar)
64 rb->send_event(GUI_EVENT_ACTIONUPDATE, NULL); 64 rb->send_event(GUI_EVENT_ACTIONUPDATE, NULL);
65#endif 65#endif
66 66