diff options
author | vanadiae <vanadiae35@gmail.com> | 2021-06-12 23:34:55 +0200 |
---|---|---|
committer | Michael Catanzaro <mcatanzaro@gnome.org> | 2021-06-12 21:52:25 +0000 |
commit | 872e70fc523f1cc19426128a59cbd681b3eac5f7 (patch) | |
tree | d7b230aa834b5cd5c623025386f0fa54ea6f1e15 /src/ephy-window.c | |
parent | b41370469dc408c802889058af072468e5b025dc (diff) | |
download | epiphany-872e70fc523f1cc19426128a59cbd681b3eac5f7.tar.gz |
window: Add shortcut to show downloads list
It uses Ctrl+Shift+Y to stay consistent with Firefox.
Diffstat (limited to 'src/ephy-window.c')
-rw-r--r-- | src/ephy-window.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index d6455b432..60bf7ef15 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -105,6 +105,7 @@ const struct { { "win.find-next", { "<Primary>G", NULL } }, { "win.bookmark-page", { "<Primary>D", "AddFavorite", NULL } }, { "win.bookmarks", { "<alt><Primary>D", NULL } }, + { "win.show-downloads", { "<shift><Primary>Y", NULL } }, { "win.encoding", { NULL } }, { "win.page-source", { "<Primary>U", NULL } }, { "win.toggle-inspector", { "<shift><Primary>I", "F12", NULL } }, @@ -862,6 +863,7 @@ static const GActionEntry window_entries [] = { { "open-bookmark", window_cmd_open_bookmark, "s" }, { "bookmark-page", window_cmd_bookmark_page }, { "bookmarks", window_cmd_bookmarks }, + { "show-downloads", window_cmd_show_downloads }, { "encoding", window_cmd_encoding }, { "page-source", window_cmd_page_source }, { "toggle-inspector", window_cmd_toggle_inspector }, |