From 43960312333bc9d9a6a8a95fff3563044856eccf Mon Sep 17 00:00:00 2001 From: N-R-K <79544946+N-R-K@users.noreply.github.com> Date: Wed, 24 Nov 2021 17:44:05 +0600 Subject: switch back to whitelisting modifers (#150) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Revert "Allow any set of modifiers to be used in keybindings" this keeps things equal with sxiv while giving users possibility to customize USED_MODMASK if they wish. This reverts commit 3234b0e521cca006a94cb135a88d146122d7f66d. Closes: https://github.com/nsxiv/nsxiv/issues/149 Closes: https://github.com/nsxiv/nsxiv/issues/123 Co-authored-by: Berke Kocaoğlu --- config.def.h | 6 +++--- main.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config.def.h b/config.def.h index 7f7e74c..f044c66 100644 --- a/config.def.h +++ b/config.def.h @@ -42,7 +42,7 @@ static const int SLIDESHOW_DELAY = 5; /* gamma correction: the user-visible ranges [-GAMMA_RANGE, 0] and * (0, GAMMA_RANGE] are mapped to the ranges [0, 1], and (1, GAMMA_MAX]. - * */ + */ static const double GAMMA_MAX = 10.0; static const int GAMMA_RANGE = 32; @@ -71,8 +71,8 @@ static const int THUMB_SIZE = 3; #endif #ifdef _MAPPINGS_CONFIG -/* following modifiers (NumLock | CapsLock) will be ignored when processing keybindings */ -static const int ignore_mask = Mod2Mask | LockMask; +/* these modifiers will be used when processing keybindings */ +static const unsigned int USED_MODMASK = ShiftMask | ControlMask | Mod1Mask; /* abort the keyhandler */ static const KeySym KEYHANDLER_ABORT = XK_Escape; diff --git a/main.c b/main.c index 85d498d..5bcc90e 100644 --- a/main.c +++ b/main.c @@ -36,7 +36,7 @@ #include #include -#define MODMASK(mask) ((mask) & ~ignore_mask) +#define MODMASK(mask) ((mask) & USED_MODMASK) #define BAR_SEP " " typedef struct { -- cgit v1.2.3-54-g00ecf