Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Compare Revisions
ebec9c914a4e268f0a163051055cb6d5a6488f43...ca22bd6d57b9c2b6ce5293ba9599404b56c08383
Commits (1)
Fix issue where X11 window would be blank on an Expose event.
· ca22bd6d
Deucе
authored
May 15, 2021
ca22bd6d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
src/conio/x_events.c
src/conio/x_events.c
+4
-0
No files found.
src/conio/x_events.c
View file @
ca22bd6d
...
...
@@ -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
;
}
...
...