]> www.fi.muni.cz Git - evince.git/commitdiff
Hide page/zoom controls from overflow, they are useless.
authorMarco Pesenti Gritti <mpg@redhat.com>
Mon, 9 May 2005 12:30:19 +0000 (12:30 +0000)
committerMarco Pesenti Gritti <marco@src.gnome.org>
Mon, 9 May 2005 12:30:19 +0000 (12:30 +0000)
2005-05-09  Marco Pesenti Gritti  <mpg@redhat.com>

        * shell/ev-window.c: (register_custom_actions):

        Hide page/zoom controls from overflow, they
        are useless.

ChangeLog
shell/ev-window.c

index 3915d915ee312532e7f10ee65ec8e71199a62a67..4507488fe4793d9f8a99afc242aca6facec20f0b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2005-05-09  Marco Pesenti Gritti  <mpg@redhat.com>
+
+       * shell/ev-window.c: (register_custom_actions):
+
+       Hide page/zoom controls from overflow, they
+       are useless.
+
 2005-05-09  Marco Pesenti Gritti  <mpg@redhat.com>
 
        * cut-n-paste/update-from-egg.sh:
index 8bdfc20a481f80548ede23707f8dc00fd31be848..40b8a10b89a95fcd052c6201c62f34c7103824da 100644 (file)
@@ -2400,6 +2400,7 @@ register_custom_actions (EvWindow *window, GtkActionGroup *group)
                               "name", PAGE_SELECTOR_ACTION,
                               "label", _("Page"),
                               "tooltip", _("Select Page"),
+                              "visible_overflown", FALSE,
                               NULL);
        gtk_action_group_add_action (group, action);
        g_object_unref (action);
@@ -2410,6 +2411,7 @@ register_custom_actions (EvWindow *window, GtkActionGroup *group)
                               "stock_id", GTK_STOCK_ZOOM_IN,
                               "tooltip", _("Adjust the zoom level"),
                               "zoom", 1.0,
+                              "visible_overflown", FALSE,
                               NULL);
        g_signal_connect (action, "zoom_to_level",
                          G_CALLBACK (zoom_control_changed_cb), window);