Skip to content

Commit

Permalink
Handle external PropertyNotify events
Browse files Browse the repository at this point in the history
Signed-off-by: Tin Švagelj <[email protected]>
  • Loading branch information
Caellian committed Apr 4, 2024
1 parent 4eecf3b commit 4b2621a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/display-x11.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 4b2621a

Please sign in to comment.