Avoid bad visual errors in thread_selection_wnd().
This commit is contained in:
parent
3b73e1277f
commit
888fb43ba2
|
@ -329,7 +329,7 @@ static Window thread_selection_wnd(void)
|
||||||
{
|
{
|
||||||
wine_tsx11_lock();
|
wine_tsx11_lock();
|
||||||
w = XCreateWindow(thread_display(), root_window, 0, 0, 1, 1, 0, screen_depth,
|
w = XCreateWindow(thread_display(), root_window, 0, 0, 1, 1, 0, screen_depth,
|
||||||
InputOutput, visual, 0, NULL);
|
InputOutput, CopyFromParent, 0, NULL);
|
||||||
wine_tsx11_unlock();
|
wine_tsx11_unlock();
|
||||||
|
|
||||||
if (w)
|
if (w)
|
||||||
|
|
Loading…
Reference in New Issue