summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2022-02-17 16:10:48 +0100
committerBastien Nocera <hadess@hadess.net>2022-02-17 17:16:46 +0100
commite0336fe95c82f7370e675858445e7b130b88e422 (patch)
tree44ebfe769518bc0cc0b18e6a1211f806648a6215
parent896d0df7d57be274b7ed2afafe3db2ee7662987d (diff)
downloadtotem-e0336fe95c82f7370e675858445e7b130b88e422.tar.gz
properties: Add Ctrl+I as a shortcut for Properties
-rw-r--r--data/shortcuts.ui2
-rw-r--r--src/plugins/properties/totem-movie-properties.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/data/shortcuts.ui b/data/shortcuts.ui
index fe9a97cfe..809ef1f49 100644
--- a/data/shortcuts.ui
+++ b/data/shortcuts.ui
@@ -45,7 +45,7 @@
<child>
<object class="GtkShortcutsShortcut" id="properties">
<property name="visible">1</property>
- <property name="accelerator">&lt;Primary&gt;p</property>
+ <property name="accelerator">&lt;Primary&gt;p &lt;Primary&gt;i</property>
<property name="title" translatable="yes" context="shortcut window">Properties</property>
</object>
</child>
diff --git a/src/plugins/properties/totem-movie-properties.c b/src/plugins/properties/totem-movie-properties.c
index 44ccf46b3..58f4cec4f 100644
--- a/src/plugins/properties/totem-movie-properties.c
+++ b/src/plugins/properties/totem-movie-properties.c
@@ -263,7 +263,7 @@ impl_activate (PeasActivatable *plugin)
GtkWindow *parent;
GMenu *menu;
GMenuItem *item;
- const char * const accels[] = { "<Primary>p", "View", NULL };
+ const char * const accels[] = { "<Primary>p", "<Primary>i", "View", NULL };
pi = TOTEM_MOVIE_PROPERTIES_PLUGIN (plugin);
totem = g_object_get_data (G_OBJECT (plugin), "object");