summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrbuj <[email protected]>2020-12-29 17:01:29 +0100
committerraveit65 <[email protected]>2020-12-29 19:54:10 +0100
commit89808a8d4c1c12b2698236c7c2dd03fee4371f7f (patch)
tree6d198107d34aa3df05ba49d28fba62eab2757b13
parent06139e4cb089399ec2c88c84bea99f0e0912504d (diff)
downloadeom-89808a8d4c1c12b2698236c7c2dd03fee4371f7f.tar.bz2
eom-89808a8d4c1c12b2698236c7c2dd03fee4371f7f.tar.xz
Do not remove the accelerators from image properties dialog
-rw-r--r--src/eom-window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eom-window.c b/src/eom-window.c
index fb56d69..0365694 100644
--- a/src/eom-window.c
+++ b/src/eom-window.c
@@ -3989,11 +3989,11 @@ set_action_properties (GtkActionGroup *window_group,
G_GNUC_BEGIN_IGNORE_DEPRECATIONS;
action = gtk_action_group_get_action (collection_group, "GoPrevious");
- g_object_set (action, "short_label", _("Previous"), NULL);
+ g_object_set (action, "short_label", _("_Previous"), NULL);
g_object_set (action, "is-important", TRUE, NULL);
action = gtk_action_group_get_action (collection_group, "GoNext");
- g_object_set (action, "short_label", _("Next"), NULL);
+ g_object_set (action, "short_label", _("_Next"), NULL);
g_object_set (action, "is-important", TRUE, NULL);
action = gtk_action_group_get_action (image_group, "EditRotate90");