Skip to content
Snippets Groups Projects
Commit ca22bd6d authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Fix issue where X11 window would be blank on an Expose event.

parent ebec9c91
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #2195 failed
......@@ -216,6 +216,10 @@ static void resize_xim(void)
if (xim) {
if (width == xim->width
&& height == xim->height) {
if (last) {
release_buffer(last);
last = NULL;
}
x11.XFillRectangle(dpy, win, gc, 0, 0, x11_window_width, x11_window_height);
return;
}
......
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