Commit 401d1208 authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

winex11: Fix the virtual desktop check in update_desktop_fullscreen().

parent 92e04256
......@@ -208,7 +208,7 @@ static void update_desktop_fullscreen( unsigned int width, unsigned int height)
Display *display = thread_display();
XEvent xev;
if (!display || root_window != DefaultRootWindow( display )) return;
if (!display || root_window == DefaultRootWindow( display )) return;
xev.xclient.type = ClientMessage;
xev.xclient.window = root_window;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment