summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-10-21 03:47:21 +0200
committerBerke Viktor <bviktor@hexchat.org>2012-10-21 03:47:21 +0200
commit125cebb09a02a029491555099c5fe7f304457135 (patch)
treeda40f4807f388285209bd39d86debe94efcf34e7 /src
parent8c297f6797d44fe2885bdd41e13db383bafec396 (diff)
Fix Command button on Mac, round 2
Diffstat (limited to 'src')
-rw-r--r--src/fe-gtk/fkeys.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-gtk/fkeys.h b/src/fe-gtk/fkeys.h
index 6a274d3c..03a0605d 100644
--- a/src/fe-gtk/fkeys.h
+++ b/src/fe-gtk/fkeys.h
@@ -2,7 +2,7 @@
 #define STATE_SHIFT		GDK_SHIFT_MASK
 #define	STATE_ALT		GDK_MOD1_MASK
 #ifdef __APPLE__
-#define STATE_CTRL		GDK_SUPER_MASK
+#define STATE_CTRL		GDK_META_MASK
 #else
 #define STATE_CTRL		GDK_CONTROL_MASK
 #endif