Skip to content

Commit

Permalink
X11: fix i3 workspace switching (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDrawingCoder-Gamer authored Jan 3, 2024
1 parent bcdbc93 commit c7957b7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions linux/cc/WindowManagerX11.cc
Original file line number Diff line number Diff line change
Expand Up @@ -720,6 +720,10 @@ void WindowManagerX11::_processXEvent(XEvent& ev) {
XSendEvent(display, ev.xselectionrequest.requestor, True, NoEventMask, (XEvent *)&ssev);
break;
}
case Expose: {
myWindow->requestRedraw();
break;
}
}
}

Expand Down

0 comments on commit c7957b7

Please sign in to comment.