From 2bc43f51aad785bd5bddeb4e743756894f3e0b1c Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Mon, 21 Feb 2005 10:43:44 +0000 Subject: Do not try to best fit if the view is not realized 2005-02-21 Marco Pesenti Gritti * shell/ev-view.c: (ev_view_best_fit): Do not try to best fit if the view is not realized --- (limited to 'shell') 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; -- cgit v0.9.1