1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-06-10 03:02:20 +00:00

Handle external PropertyNotify events

Fixes #1792

Signed-off-by: Tin Švagelj <tin.svagelj@live.com>
This commit is contained in:
Tin Švagelj 2024-04-04 14:51:01 +03:00 committed by GitHub
parent 4eecf3b88f
commit bfe39a8fd2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -440,7 +440,7 @@ bool display_output_x11::main_loop_wait(double t) {
#endif /* BUILD_MOUSE_EVENTS && BUILD_XINPUT */
// Any of the remaining events apply to conky window
if (ev.xany.window != window.window) continue;
if (ev.xany.window != window.window && ev.type != PropertyNotify) continue;
switch (ev.type) {
case Expose: {
XRectangle r;