commit 9f45312eb651247d167f7660da3182c41e56258e
parent d32847c2624b37105563e0cb80aac825b0f16780
Author: Michael Forney <mforney@mforney.org>
Date: Tue, 3 Sep 2013 00:24:46 -0700
SUPER -> LOGO
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libswc/binding.h b/libswc/binding.h
@@ -6,7 +6,7 @@
#define SWC_MOD_CTRL (1 << 0)
#define SWC_MOD_ALT (1 << 1)
-#define SWC_MOD_SUPER (1 << 2)
+#define SWC_MOD_LOGO (1 << 2)
#define SWC_MOD_SHIFT (1 << 3)
#define SWC_MOD_ANY (-1)
diff --git a/libswc/compositor.c b/libswc/compositor.c
@@ -84,7 +84,7 @@ static bool handle_key(struct swc_keyboard * keyboard, uint32_t time,
if (mod_mask & (1 << seat->xkb.indices.alt))
modifiers |= SWC_MOD_ALT;
if (mod_mask & (1 << seat->xkb.indices.super))
- modifiers |= SWC_MOD_SUPER;
+ modifiers |= SWC_MOD_LOGO;
if (mod_mask & (1 << seat->xkb.indices.shift))
modifiers |= SWC_MOD_SHIFT;