avoid problem

This commit is contained in:
Adam D. Ruppe 2021-01-20 14:05:18 -05:00
parent 6648262a26
commit 89718d996e
1 changed files with 4 additions and 1 deletions

View File

@ -11544,7 +11544,10 @@ mixin DynamicLoad!(XRender, "Xrender", 1, false, true) XRenderLibrary;
// now remove all registered images to prevent shared memory leaks
freeImages();
XCloseDisplay(display);
// tbh I don't know why it is doing this but like if this happens to run
// from the other thread there's frequent hanging inside here.
if(thisIsGuiThread)
XCloseDisplay(display);
display = null;
}
}