diff options
author | raveit65 <[email protected]> | 2018-08-10 23:50:31 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-08-15 18:00:22 +0200 |
commit | b21b98326625184025ed6876400a077480c05e9a (patch) | |
tree | 104326bc2b675f394c11823488d3ad22e16ebc6c /src | |
parent | d066bae5c17b836e49d86d585c8e9cf0779899bb (diff) | |
download | eom-b21b98326625184025ed6876400a077480c05e9a.tar.bz2 eom-b21b98326625184025ed6876400a077480c05e9a.tar.xz |
EomWindow: Switch keyboard shortcuts for sidebar and gallery
This makes eom behave the same as other MATE apps,
like Caja and pluma.
inspired by:
https://gitlab.gnome.org/GNOME/eog/commit/af2c96
Diffstat (limited to 'src')
-rw-r--r-- | src/eom-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eom-window.c b/src/eom-window.c index 783a451..bb09fd8 100644 --- a/src/eom-window.c +++ b/src/eom-window.c @@ -3729,10 +3729,10 @@ static const GtkToggleActionEntry toggle_entries_window[] = { { "ViewStatusbar", NULL, N_("_Statusbar"), NULL, N_("Changes the visibility of the statusbar in the current window"), G_CALLBACK (eom_window_cmd_show_hide_bar), TRUE }, - { "ViewImageCollection", "eom-image-collection", N_("_Image Collection"), "F9", + { "ViewImageCollection", "eom-image-collection", N_("_Image Collection"), "<control>F9", N_("Changes the visibility of the image collection pane in the current window"), G_CALLBACK (eom_window_cmd_show_hide_bar), TRUE }, - { "ViewSidebar", NULL, N_("Side _Pane"), "<control>F9", + { "ViewSidebar", NULL, N_("Side _Pane"), "F9", N_("Changes the visibility of the side pane in the current window"), G_CALLBACK (eom_window_cmd_show_hide_bar), TRUE }, }; |