aboutsummaryrefslogtreecommitdiffstats
path: root/src/window-xlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/window-xlib.c')
-rw-r--r--src/window-xlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/window-xlib.c b/src/window-xlib.c
index 96d2558..485a3fd 100644
--- a/src/window-xlib.c
+++ b/src/window-xlib.c
@@ -760,8 +760,8 @@ static int runes_window_backend_handle_builtin_button_press(
break;
case Button4:
t->scr.row_visible_offset += t->config.scroll_lines;
- if (t->scr.row_visible_offset > t->scr.row_count - t->scr.max.row) {
- t->scr.row_visible_offset = t->scr.row_count - t->scr.max.row;
+ if (t->scr.row_visible_offset > t->scr.grid->row_count - t->scr.grid->max.row) {
+ t->scr.row_visible_offset = t->scr.grid->row_count - t->scr.grid->max.row;
}
t->scr.dirty = 1;
runes_window_backend_flush(t);