Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--shell/ev-view.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 835492e..0d6165a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-02-21 Marco Pesenti Gritti <marco@gnome.org>
+
+ * shell/ev-view.c: (ev_view_best_fit):
+
+ Do not try to best fit if the view is not realized
+
2005-02-20 Kostas Papadimas <pkst@gnome.org>
* configure.ac (ALL_LINGUAS): Added "el" (Greek).
diff --git a/shell/ev-view.c b/shell/ev-view.c
index 589311a..8998a7f 100644
--- a/shell/ev-view.c
+++ b/shell/ev-view.c
@@ -1327,7 +1327,7 @@ ev_view_best_fit (EvView *view, int allocation_width, int allocation_height)
int width, height;
GtkBorder border;
- if (view->document == NULL)
+ if (!GTK_WIDGET_REALIZED (view) || view->document == NULL)
return;
width = height = 0;