Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--shell/ev-view.c10
2 files changed, 12 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 2557032..b668080 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2005-02-24 Marco Pesenti Gritti <marco@gnome.org>
+ * shell/ev-view.c: (ev_view_size_allocate):
+
+ Calculate offsets before calling the parent
+ class (which does a redraw)
+
+2005-02-24 Marco Pesenti Gritti <marco@gnome.org>
+
* pdf/xpdf/pdf-document.cc:
Fix a crasher on exit. Unused code, put a TODO
diff --git a/shell/ev-view.c b/shell/ev-view.c
index c667bf9..610c880 100644
--- a/shell/ev-view.c
+++ b/shell/ev-view.c
@@ -280,11 +280,6 @@ ev_view_size_allocate (GtkWidget *widget,
GtkBorder border;
gint width, height;
- GTK_WIDGET_CLASS (ev_view_parent_class)->size_allocate (widget, allocation);
-
- view_set_adjustment_values (view, GTK_ORIENTATION_HORIZONTAL);
- view_set_adjustment_values (view, GTK_ORIENTATION_VERTICAL);
-
if (view->document) {
ev_document_get_page_size (view->document, -1,
&width, &height);
@@ -297,6 +292,11 @@ ev_view_size_allocate (GtkWidget *widget,
view->y_offset += MAX (0, (widget->allocation.height - target_height) / 2);
}
+ GTK_WIDGET_CLASS (ev_view_parent_class)->size_allocate (widget, allocation);
+
+ view_set_adjustment_values (view, GTK_ORIENTATION_HORIZONTAL);
+ view_set_adjustment_values (view, GTK_ORIENTATION_VERTICAL);
+
if (GTK_WIDGET_REALIZED (widget)) {
gdk_window_resize (view->bin_window,
MAX (widget->allocation.width, widget->requisition.width),