1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

fix(capslock_x11): properly release the X display handle

This fixes caps lock detection after a while, and removes the "Maximum
number of clients reached" message on stdout.
This commit is contained in:
Colomban Wendling 2016-06-15 18:43:32 +02:00
parent 653e0b5af2
commit f9190734d7

View File

@ -35,6 +35,7 @@ bool Platform::capsLockEnabled()
unsigned n; unsigned n;
XkbGetIndicatorState(d, XkbUseCoreKbd, &n); XkbGetIndicatorState(d, XkbUseCoreKbd, &n);
caps_state = (n & 0x01) == 1; caps_state = (n & 0x01) == 1;
XCloseDisplay(d);
} }
return caps_state; return caps_state;
} }