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

This commit is contained in:
Alexandre Julliard 2005-07-19 11:43:38 +00:00
parent 2a52813024
commit 6655fed5a6
1 changed files with 1 additions and 2 deletions

View File

@ -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();