[evolution/gnome-3-8] web-inspector: Change the shortcut key to match Chrome.



commit a041490db596ffea5885642237f2e6341bf4a243
Author: Matthew Barnes <mbarnes redhat com>
Date:   Fri Apr 12 10:03:35 2013 -0400

    web-inspector: Change the shortcut key to match Chrome.
    
    GDK_MOD1_MASK is ill defined across various keyboards, apparently.
    
    Use Ctrl + Shift + I instead, which happens to match what Chrome uses
    to bring up its web inspector.
    
    (cherry picked from commit e68a333a4fb34292aa7bf8ec1004c390e8475afa)

 modules/web-inspector/evolution-web-inspector.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/modules/web-inspector/evolution-web-inspector.c b/modules/web-inspector/evolution-web-inspector.c
index 2b960aa..8912890 100644
--- a/modules/web-inspector/evolution-web-inspector.c
+++ b/modules/web-inspector/evolution-web-inspector.c
@@ -31,9 +31,9 @@
        (G_TYPE_CHECK_INSTANCE_CAST \
        ((obj), E_TYPE_WEB_INSPECTOR, EWebInspector))
 
-/* <Control>+<Alt>+I */
-#define WEB_INSPECTOR_MOD  (GDK_CONTROL_MASK | GDK_MOD1_MASK)
-#define WEB_INSPECTOR_KEY  (GDK_KEY_i)
+/* <Control>+<Shift>+I */
+#define WEB_INSPECTOR_MOD  (GDK_CONTROL_MASK | GDK_SHIFT_MASK)
+#define WEB_INSPECTOR_KEY  (GDK_KEY_I)
 
 #define WEB_INSPECTOR_SHORTCUT_SHOW(event) \
        ((((event)->state & GDK_MODIFIER_MASK) == WEB_INSPECTOR_MOD) && \


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]