summaryrefslogtreecommitdiff
path: root/frontends/riscos
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/riscos')
-rw-r--r--frontends/riscos/corewindow.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/frontends/riscos/corewindow.c b/frontends/riscos/corewindow.c
index fa42b8f64..9896069f8 100644
--- a/frontends/riscos/corewindow.c
+++ b/frontends/riscos/corewindow.c
@@ -742,7 +742,7 @@ ro_cw_update_size(struct core_window *cw, int width, int height)
LOG("content resize from w:%d h:%d to w:%d h:%d",
ro_cw->content_width, ro_cw->content_height, width, height);
- ro_cw->content_width = width;
+ ro_cw->content_width = width * 2;
ro_cw->content_height = -(2 * height);
state.w = ro_cw->wh;
@@ -753,13 +753,16 @@ ro_cw_update_size(struct core_window *cw, int width, int height)
return;
}
- open.w = ro_cw->wh;
- open.visible = state.visible;
- open.xscroll = state.xscroll;
- open.yscroll = state.yscroll;
- open.next = state.next;
+ /* only update the window if it is open */
+ if (state.flags & wimp_WINDOW_OPEN) {
+ open.w = ro_cw->wh;
+ open.visible = state.visible;
+ open.xscroll = state.xscroll;
+ open.yscroll = state.yscroll;
+ open.next = state.next;
- update_scrollbars(ro_cw, &open);
+ update_scrollbars(ro_cw, &open);
+ }
}