From: Vincent Noel Date: Wed, 9 Feb 2005 16:20:19 +0000 (+0000) Subject: Set the "Previous" and "Next" toolbar buttons as important to make them X-Git-Tag: EVINCE_0_1_5~65 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=792e15101fa0a75343b241a692beff93f189cbd8;p=evince.git 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. --- diff --git a/ChangeLog b/ChangeLog index a6f14b71..4676073e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +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. + 2005-02-09 Marco Pesenti Gritti * lib/ev-debug.c: diff --git a/shell/ev-window.c b/shell/ev-window.c index 4f7bab4a..23798bf9 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*/