diff options
| author | phintuka <phintuka> | 2011-07-01 12:43:29 +0000 |
|---|---|---|
| committer | phintuka <phintuka> | 2011-07-01 12:43:29 +0000 |
| commit | a68d7174c0e8d8d39ad8f5adab16f0af371d13cb (patch) | |
| tree | 935d9880571b230385ad835cd7ebf2a0ed9c1a56 | |
| parent | a3bb1bc59e4ab2e22c38506177c3da1b51143b5a (diff) | |
| download | xineliboutput-a68d7174c0e8d8d39ad8f5adab16f0af371d13cb.tar.gz xineliboutput-a68d7174c0e8d8d39ad8f5adab16f0af371d13cb.tar.bz2 | |
Removed CWBackPixel when creating windows
(patch #3206794, thanks to grueni75)
| -rw-r--r-- | xine_sxfe_frontend.c | 5 |
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); |
