diff options
author | phintuka <phintuka> | 2009-05-31 19:25:03 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2009-05-31 19:25:03 +0000 |
commit | 89c78d4f1ba0e4aa9a43bde7139633def9d0f265 (patch) | |
tree | 376cd0788f3b35ebc876f04892d41a50ec495b19 | |
parent | daa0099ce4245658fc89fb0b00be297b6935d3c3 (diff) | |
download | xineliboutput-89c78d4f1ba0e4aa9a43bde7139633def9d0f265.tar.gz xineliboutput-89c78d4f1ba0e4aa9a43bde7139633def9d0f265.tar.bz2 |
Move window to initial coordinates
-rw-r--r-- | xine_sxfe_frontend.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xine_sxfe_frontend.c b/xine_sxfe_frontend.c index e4aba486..a3221429 100644 --- a/xine_sxfe_frontend.c +++ b/xine_sxfe_frontend.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_sxfe_frontend.c,v 1.111 2009-05-31 16:51:26 phintuka Exp $ + * $Id: xine_sxfe_frontend.c,v 1.112 2009-05-31 19:25:03 phintuka Exp $ * */ @@ -1219,6 +1219,7 @@ static int sxfe_display_open(frontend_t *this_gen, /* Map current window */ XMapRaised (this->display, this->window[this->fullscreen ? 1 : 0]); + XMoveWindow(this->display, this->window[0], this->x.xpos, this->x.ypos); /* determine display aspect ratio */ this->x.display_ratio = detect_display_ratio(this->display, this->screen); |