Commit 6655fed5 authored by Alexandre Julliard's avatar Alexandre Julliard

Don't set win gravity, the default should work fine.

parent 2a528130
......@@ -662,9 +662,8 @@ static Window create_whole_window( Display *display, struct x11drv_win_data *dat
/* set the attributes that don't change over the lifetime of the window */
attr.bit_gravity = NorthWestGravity;
attr.win_gravity = StaticGravity;
attr.backing_store = NotUseful;
mask |= CWBitGravity | CWWinGravity | CWBackingStore;
mask |= CWBitGravity | CWBackingStore;
wine_tsx11_lock();
......
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