swc

Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.nihaljere.xyz/swc
Log | Files | Refs | README | LICENSE

commit 9f45312eb651247d167f7660da3182c41e56258e
parent d32847c2624b37105563e0cb80aac825b0f16780
Author: Michael Forney <mforney@mforney.org>
Date:   Tue,  3 Sep 2013 00:24:46 -0700

SUPER -> LOGO

Diffstat:
Mlibswc/binding.h | 2+-
Mlibswc/compositor.c | 2+-
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;