* shell/ev-view.c: (ev_view_expose_event):
More correctly draw loading text when document
is empty.
+2006-03-21 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
+
+ * shell/ev-view.c: (ev_view_expose_event):
+
+ More correctly draw loading text when document
+ is empty.
+
2006-03-21 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
* shell/ev-view.c: (ev_view_scroll):
int i;
if (view->loading) {
+ GdkRectangle area = {0};
+
+ area.width = widget->allocation.width;
+ area.height = widget->allocation.height;
+
draw_loading_text (view,
- &(widget->allocation),
+ &area,
&(event->area));
}