Skip to content
Snippets Groups Projects
Commit 7aca2b67 authored by Olivier Fourdan's avatar Olivier Fourdan
Browse files

Forgot caps lock mask.

(Old svn revision: 12276)
parent dabd2a13
No related branches found
No related tags found
No related merge requests found
......@@ -280,6 +280,10 @@ initModifiers (Display * dpy)
{
NumLockMask |= (1 << ( i / modmap->max_keypermod));
}
else if (syms[j] == XK_Caps_Lock)
{
CapsLockMask |= (1 << ( i / modmap->max_keypermod));
}
else if (syms[j] == XK_Scroll_Lock)
{
ScrollLockMask |= (1 << ( i / modmap->max_keypermod));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment