From: Marco Pesenti Gritti Date: Fri, 4 Feb 2005 15:44:54 +0000 (+0000) Subject: Add another check for find interface X-Git-Tag: EVINCE_0_1_3^0 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=a62d465692a2c2801667079d45378f4ce17514ad;p=evince.git Add another check for find interface 2005-02-04 Marco Pesenti Gritti * NEWS: * configure.ac: * shell/ev-view.c: Add another check for find interface Release 0.1.3 --- diff --git a/ChangeLog b/ChangeLog index 1ef6cde9..89ff8366 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,9 @@ * NEWS: * configure.ac: + * shell/ev-view.c: + + Add another check for find interface Release 0.1.3 diff --git a/NEWS b/NEWS index 24a800da..2b23b112 100644 --- a/NEWS +++ b/NEWS @@ -13,7 +13,7 @@ New features Bug fixes - * Fix the postscript view (Marco) + * Fix a crash with the postscript view (Marco) * Fix image view (Jeff Muizelaar) * Fix a warning when opening documents without thumbnails (Martin) diff --git a/shell/ev-view.c b/shell/ev-view.c index 68767d4a..587b2586 100644 --- a/shell/ev-view.c +++ b/shell/ev-view.c @@ -983,7 +983,10 @@ set_document_page (EvView *view, int new_page) view->find_page = page; view->find_result = 0; - update_find_status_message (view); + + if (EV_IS_DOCUMENT_FIND (view->document)) { + update_find_status_message (view); + } } }