aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2014-02-17 21:38:58 +0800
committerMilan Crha <mcrha@redhat.com>2014-02-17 21:38:58 +0800
commitd0b147ddb6bb33c1cdf3c8181394a5d4e6b08431 (patch)
treef9e5c9392b04bc48ea78a8a86aa9cb50cd7e23f8 /shell
parentad22aaac43b8652785d367a87c896439b3dd7cc9 (diff)
downloadgsoc2013-evolution-d0b147ddb6bb33c1cdf3c8181394a5d4e6b08431.tar
gsoc2013-evolution-d0b147ddb6bb33c1cdf3c8181394a5d4e6b08431.tar.gz
gsoc2013-evolution-d0b147ddb6bb33c1cdf3c8181394a5d4e6b08431.tar.bz2
gsoc2013-evolution-d0b147ddb6bb33c1cdf3c8181394a5d4e6b08431.tar.lz
gsoc2013-evolution-d0b147ddb6bb33c1cdf3c8181394a5d4e6b08431.tar.xz
gsoc2013-evolution-d0b147ddb6bb33c1cdf3c8181394a5d4e6b08431.tar.zst
gsoc2013-evolution-d0b147ddb6bb33c1cdf3c8181394a5d4e6b08431.zip
Add shortcuts previously defined by gtk-stock item definitions
Diffstat (limited to 'shell')
-rw-r--r--shell/e-shell-window-actions.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/shell/e-shell-window-actions.c b/shell/e-shell-window-actions.c
index fcf1e07a74..fee855918d 100644
--- a/shell/e-shell-window-actions.c
+++ b/shell/e-shell-window-actions.c
@@ -883,14 +883,14 @@ static GtkActionEntry shell_entries[] = {
{ "copy-clipboard",
"edit-copy",
N_("_Copy"),
- NULL,
+ "<Control>c",
N_("Copy the selection"),
NULL }, /* Handled by EFocusTracker */
{ "cut-clipboard",
"edit-cut",
N_("Cu_t"),
- NULL,
+ "<Control>x",
N_("Cut the selection"),
NULL }, /* Handled by EFocusTracker */
@@ -918,7 +918,7 @@ static GtkActionEntry shell_entries[] = {
{ "paste-clipboard",
"edit-paste",
N_("_Paste"),
- NULL,
+ "<Control>v",
N_("Paste the clipboard"),
NULL }, /* Handled by EFocusTracker */
@@ -946,7 +946,7 @@ static GtkActionEntry shell_entries[] = {
{ "quit",
"application-exit",
N_("_Quit"),
- NULL,
+ "<Control>q",
N_("Exit the program"),
G_CALLBACK (action_quit_cb) },
@@ -974,14 +974,14 @@ static GtkActionEntry shell_entries[] = {
{ "search-options",
"edit-find",
N_("_Find"),
- NULL,
+ "<Control>f",
N_("Click here to change the search type"),
G_CALLBACK (action_search_options_cb) },
{ "search-quick",
"edit-find",
N_("_Find Now"),
- "", /* Block the default Ctrl+F. */
+ NULL,
N_("Execute the current search parameters"),
G_CALLBACK (action_search_quick_cb) },
@@ -1053,7 +1053,7 @@ static GtkActionEntry shell_entries[] = {
{ "new-menu",
"document-new",
N_("_New"),
- "",
+ NULL,
NULL,
NULL },