summaryrefslogtreecommitdiff
path: root/frontends/riscos
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/riscos')
-rw-r--r--frontends/riscos/corewindow.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/frontends/riscos/corewindow.c b/frontends/riscos/corewindow.c
index ecd2df221..6adfb03e7 100644
--- a/frontends/riscos/corewindow.c
+++ b/frontends/riscos/corewindow.c
@@ -846,8 +846,12 @@ ro_cw_scroll_visible(struct core_window *cw, const struct rect *r)
return;
}
- state.xscroll = r->x0 * 2;
- state.yscroll = r->y0 * 2;
+ /* TODO:
+ * Scroll so the area is brought into view, not just the top left of
+ * the rectangle. See `nsgtk_cw_scroll_visible`.
+ */
+ state.xscroll = -r->x0 * 2;
+ state.yscroll = -r->y0 * 2;
ro_cw_open(PTR_WIMP_OPEN(&state));
}