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

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

parent 172d6f68
Branches
Tags
No related merge requests found
......@@ -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.
Please register or to comment