From 792e15101fa0a75343b241a692beff93f189cbd8 Mon Sep 17 00:00:00 2001 From: Vincent Noel Date: Wed, 09 Feb 2005 16:20:19 +0000 Subject: Set the "Previous" and "Next" toolbar buttons as important to make them 2005-02-09 Vincent Noel * shell/ev-window.c: (set_action_properties): Set the "Previous" and "Next" toolbar buttons as important to make them stand out. --- (limited to 'shell') diff --git a/shell/ev-window.c b/shell/ev-window.c index 4f7bab4..23798bf 100644 --- a/shell/ev-window.c +++ b/shell/ev-window.c @@ -1651,8 +1651,10 @@ set_action_properties (GtkActionGroup *action_group) action = gtk_action_group_get_action (action_group, "GoPreviousPage"); /*translators: this is the label for toolbar button*/ g_object_set (action, "short_label", _("Previous"), NULL); + g_object_set (action, "is-important", TRUE, NULL); action = gtk_action_group_get_action (action_group, "GoNextPage"); /*translators: this is the label for toolbar button*/ + g_object_set (action, "is-important", TRUE, NULL); g_object_set (action, "short_label", _("Next"), NULL); action = gtk_action_group_get_action (action_group, "ViewPageWidth"); /*translators: this is the label for toolbar button*/ -- cgit v0.9.1