[evince/gnome-40] shell: Enable annotation actions only in document that supports them



commit 31ad19f0812212412b01cc933c9c1806245735ff
Author: Germán Poo-Caamaño <gpoo gnome org>
Date:   Thu Jul 22 13:47:23 2021 -0400

    shell: Enable annotation actions only in document that supports them
    
    Fixes #1638

 shell/ev-window.c | 4 ++++
 1 file changed, 4 insertions(+)
---
diff --git a/shell/ev-window.c b/shell/ev-window.c
index fab121ca..0043074a 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -532,6 +532,10 @@ ev_window_update_actions_sensitivity (EvWindow *ev_window)
                                      !recent_view_mode);
        ev_window_set_action_enabled (ev_window, "toggle-find", can_find &&
                                      !recent_view_mode);
+       ev_window_set_action_enabled (ev_window, "add-annotation", can_annotate &&
+                                     !recent_view_mode);
+       ev_window_set_action_enabled (ev_window, "highlight-annotation", can_annotate &&
+                                     !recent_view_mode);
        ev_window_set_action_enabled (ev_window, "toggle-edit-annots", can_annotate &&
                                      !recent_view_mode);
        ev_window_set_action_enabled (ev_window, "rotate-left", has_pages &&


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]