Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@gnome.org>2005-02-04 15:44:54 (GMT)
committer Marco Pesenti Gritti <marco@src.gnome.org>2005-02-04 15:44:54 (GMT)
commita62d465692a2c2801667079d45378f4ce17514ad (patch)
tree607b48ad02e41dd3eb8169469ef7feba69f6fc71
parent86361364a01d8cc15aa74a9caee2c026d3c38f76 (diff)
Add another check for find interface
2005-02-04 Marco Pesenti Gritti <marco@gnome.org> * NEWS: * configure.ac: * shell/ev-view.c: Add another check for find interface Release 0.1.3
-rw-r--r--ChangeLog3
-rw-r--r--NEWS2
-rw-r--r--shell/ev-view.c5
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 1ef6cde..89ff836 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 24a800d..2b23b11 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 68767d4..587b258 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);
+ }
}
}