summaryrefslogtreecommitdiff
path: root/src/keyboard.c
diff options
context:
space:
mode:
authorOlivier Fourdan <fourdan.olivier@wanadoo.fr>2006-03-04 11:54:08 +0000
committerOlivier Fourdan <fourdan.olivier@wanadoo.fr>2006-03-04 11:54:08 +0000
commit7a83619c1f4958a301174702bc4ba874d782694b (patch)
tree67b015ba6df651302a4f8638c9661431ebc785eb /src/keyboard.c
parent7f431c7198f03af3ff5b46c008cc6837327ff295 (diff)
downloadxfwm4-7a83619c1f4958a301174702bc4ba874d782694b.tar.gz
Allow focusing windows even when other modifiers are pressed (fix 2nd part of bug #1530) - This is somehow experimental as I'm not sure of the side effects for the apps and may be reverted if too much people complain.
(Old svn revision: 20208)
Diffstat (limited to 'src/keyboard.c')
-rw-r--r--src/keyboard.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 3fb844280..e8625fa52 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -31,9 +31,6 @@
#include <libxfce4util/libxfce4util.h>
#include "keyboard.h"
-unsigned int KeyMask;
-unsigned int ButtonMask;
-unsigned int ButtonKeyMask;
unsigned int AltMask;
unsigned int MetaMask;
unsigned int NumLockMask;
@@ -310,11 +307,4 @@ initModifiers (Display * dpy)
}
}
}
- KeyMask =
- ControlMask | ShiftMask | AltMask | MetaMask | SuperMask | HyperMask;
-
- ButtonMask =
- Button1Mask | Button2Mask | Button3Mask | Button4Mask | Button5Mask;
-
- ButtonKeyMask = KeyMask | ButtonMask;
}