summaryrefslogtreecommitdiff
path: root/riscos
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2005-03-13 09:04:44 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2005-03-13 09:04:44 +0000
commit950d8e27a041119009bede022cb5a2502131a94b (patch)
treee59116a024572ef937933ef36c8f62084353df69 /riscos
parenta0875b261f7c14c0ea932c2bd5412b6834989c9b (diff)
downloadnetsurf-950d8e27a041119009bede022cb5a2502131a94b.tar.gz
netsurf-950d8e27a041119009bede022cb5a2502131a94b.tar.bz2
[project @ 2005-03-13 09:04:44 by rjw]
Update title and extent on scale change. svn path=/import/netsurf/; revision=1534
Diffstat (limited to 'riscos')
-rw-r--r--riscos/dialog.c2
-rw-r--r--riscos/window.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/riscos/dialog.c b/riscos/dialog.c
index 8559c93ab..26f689d12 100644
--- a/riscos/dialog.c
+++ b/riscos/dialog.c
@@ -1187,7 +1187,7 @@ void ro_gui_dialog_click_zoom(wimp_pointer *pointer)
ro_gui_current_zoom_gui->reformat_pending = true;
c = ro_gui_current_zoom_gui->bw->current_content;
if ((c) && (c->type != CONTENT_HTML))
- gui_window_redraw(ro_gui_current_zoom_gui, 0, 0, 16384, 16384);
+ browser_window_update(ro_gui_current_zoom_gui->bw, false);
gui_reformat_pending = true;
}
diff --git a/riscos/window.c b/riscos/window.c
index 367d770b9..82a041d95 100644
--- a/riscos/window.c
+++ b/riscos/window.c
@@ -1648,7 +1648,7 @@ bool ro_gui_window_keypress(struct gui_window *g, int key, bool toolbar)
if (old_scale != current_gui->option.scale) {
current_gui->reformat_pending = true;
if ((content) && (content->type != CONTENT_HTML))
- gui_window_redraw(current_gui, 0, 0, 16384, 16384);
+ browser_window_update(current_gui->bw, false);
gui_reformat_pending = true;
}
return true;