From 3c2a866a6de04525e874c3aabf027608f43a381c Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sat, 6 Mar 2010 18:38:25 +0200 Subject: [PATCH] XCB/window: pass requested position to the X server --- modules/video_output/xcb/window.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/video_output/xcb/window.c b/modules/video_output/xcb/window.c index 33815dc6ae..fc193b4624 100644 --- a/modules/video_output/xcb/window.c +++ b/modules/video_output/xcb/window.c @@ -253,7 +253,8 @@ static int Open (vlc_object_t *obj) xcb_window_t window = xcb_generate_id (conn); ck = xcb_create_window_checked (conn, scr->root_depth, window, scr->root, - 0, 0, wnd->cfg->width, wnd->cfg->height, 0, + wnd->cfg->x, wnd->cfg->y, + wnd->cfg->width, wnd->cfg->height, 0, XCB_WINDOW_CLASS_INPUT_OUTPUT, scr->root_visual, mask, values); err = xcb_request_check (conn, ck); -- 2.39.2