http://git.etersoft.ru/projects
/
wine
/
eterwine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ace9d32
)
winex11: Fix a copy&paste typo in the initial position of a window.
author
Alexandre Julliard
<julliard@winehq.org>
Mon, 23 Nov 2015 08:16:03 +0000
(17:16 +0900)
committer
Alexandre Julliard
<julliard@winehq.org>
Mon, 23 Nov 2015 14:35:17 +0000
(23:35 +0900)
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
dlls/winex11.drv/window.c
patch
|
blob
|
blame
|
history
diff --git
a/dlls/winex11.drv/window.c
b/dlls/winex11.drv/window.c
index b7636770e7e17e2adff00c464ba8672474acaca3..836e62c88aea08cacd870aaead02b371fdedaa9f 100644
(file)
--- a/
dlls/winex11.drv/window.c
+++ b/
dlls/winex11.drv/window.c
@@
-1501,7
+1501,7
@@
static void create_whole_window( struct x11drv_win_data *data )
else if (cy > 65535) cy = 65535;
pos = virtual_screen_to_root( data->whole_rect.left, data->whole_rect.top );
- data->whole_window = XCreateWindow( data->display, root_window, pos.
y
, pos.y,
+ data->whole_window = XCreateWindow( data->display, root_window, pos.
x
, pos.y,
cx, cy, 0, data->vis.depth, InputOutput,
data->vis.visual, mask, &attr );
if (!data->whole_window) goto done;