summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2011-07-01 12:43:29 +0000
committerphintuka <phintuka>2011-07-01 12:43:29 +0000
commita68d7174c0e8d8d39ad8f5adab16f0af371d13cb (patch)
tree935d9880571b230385ad835cd7ebf2a0ed9c1a56
parenta3bb1bc59e4ab2e22c38506177c3da1b51143b5a (diff)
downloadxineliboutput-a68d7174c0e8d8d39ad8f5adab16f0af371d13cb.tar.gz
xineliboutput-a68d7174c0e8d8d39ad8f5adab16f0af371d13cb.tar.bz2
Removed CWBackPixel when creating windows
(patch #3206794, thanks to grueni75)
-rw-r--r--xine_sxfe_frontend.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/xine_sxfe_frontend.c b/xine_sxfe_frontend.c
index 1fc3e83e..ee9f5cab 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.161 2011-07-01 12:36:20 phintuka Exp $
+ * $Id: xine_sxfe_frontend.c,v 1.162 2011-07-01 12:43:29 phintuka Exp $
*
*/
@@ -1426,7 +1426,8 @@ static void create_windows(sxfe_t *this)
xswa.border_pixel = 0;
xswa.backing_store = WhenMapped;
- xswa_mask = CWBackPixel | CWBorderPixel | CWBackingStore;
+ //xswa_mask = CWBackPixel | CWBorderPixel | CWBackingStore;
+ xswa_mask = CWBorderPixel | CWBackingStore;
XLockDisplay(this->display);