···44444545 - add History feature.
46464747- - when the WIDE screen, allow to specify the number of screens.
4848-4947 - when the line_mode is reflow, allow to specify indent spaces.
50485149 - for the horizontal scroll, allow the select scroll by screen/scroll by column for the settings menu.
+4-4
apps/plugins/text_viewer/text_viewer.c
···108108109109 case TV_SCREEN_LEFT:
110110 case TV_SCREEN_LEFT | BUTTON_REPEAT:
111111- if (prefs->view_mode == WIDE)
111111+ if (prefs->windows > 1)
112112 {
113113 /* Screen left */
114114 tv_scroll_left(TV_HORIZONTAL_SCROLL_WINDOW);
115115 }
116116- else { /* prefs->view_mode == NARROW */
116116+ else { /* prefs->windows == 1 */
117117 /* scroll to previous page */
118118 tv_scroll_up(TV_VERTICAL_SCROLL_PAGE);
119119#if 0
···125125126126 case TV_SCREEN_RIGHT:
127127 case TV_SCREEN_RIGHT | BUTTON_REPEAT:
128128- if (prefs->view_mode == WIDE)
128128+ if (prefs->windows > 1)
129129 {
130130 /* Screen right */
131131 tv_scroll_right(TV_HORIZONTAL_SCROLL_WINDOW);
132132 }
133133- else { /* prefs->view_mode == NARROW */
133133+ else { /* prefs->windows == 1 */
134134 /* scroll to next page */
135135 tv_scroll_down(TV_VERTICAL_SCROLL_PAGE);
136136#if 0