Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/ev-window.c
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2005-05-09 12:30:19 (GMT)
committer Marco Pesenti Gritti <marco@src.gnome.org>2005-05-09 12:30:19 (GMT)
commit8bc2adc14fed2e5be9c52b052cff441b7a136b9a (patch)
treef21139653e4abc630ed79ce37c9c647be48591e8 /shell/ev-window.c
parentc51ecdbf6cdc72e52eecb650a4c9002817fc5666 (diff)
Hide page/zoom controls from overflow, they are useless.
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.
Diffstat (limited to 'shell/ev-window.c')
-rw-r--r--shell/ev-window.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/ev-window.c b/shell/ev-window.c
index 8bdfc20..40b8a10 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -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);