diff options
| author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-11-26 18:36:34 +0000 |
|---|---|---|
| committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-11-26 18:36:34 +0000 |
| commit | fe1481d199f8f35734cff5eac8d8edf6a50aff52 (patch) | |
| tree | f5ccca72ca320a755cd2b329ca78ae9c1af118df /src/video_out/video_out_vidix.c | |
| parent | c69ab1501cefec445ba2ea4fad42b398fdc43072 (diff) | |
| download | xine-lib-fe1481d199f8f35734cff5eac8d8edf6a50aff52.tar.gz xine-lib-fe1481d199f8f35734cff5eac8d8edf6a50aff52.tar.bz2 | |
fix x11osd bugs with fullscreen changing
CVS patchset: 5789
CVS date: 2003/11/26 18:36:34
Diffstat (limited to 'src/video_out/video_out_vidix.c')
| -rw-r--r-- | src/video_out/video_out_vidix.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/video_out/video_out_vidix.c b/src/video_out/video_out_vidix.c index 66bd8cf6d..8e06be682 100644 --- a/src/video_out/video_out_vidix.c +++ b/src/video_out/video_out_vidix.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_out_vidix.c,v 1.52 2003/11/26 01:03:32 miguelfreitas Exp $ + * $Id: video_out_vidix.c,v 1.53 2003/11/26 18:36:34 miguelfreitas Exp $ * * video_out_vidix.c * @@ -585,7 +585,7 @@ static void vidix_overlay_begin (vo_driver_t *this_gen, #ifdef HAVE_X11 vidix_driver_t *this = (vidix_driver_t *) this_gen; - this->ovl_changed = changed; + this->ovl_changed += changed; if( this->ovl_changed && this->xoverlay ) { XLockDisplay (this->display); @@ -883,6 +883,7 @@ static int vidix_gui_data_exchange (vo_driver_t *this_gen, this->gc = XCreateGC(this->display, this->drawable, 0, NULL); if(this->xoverlay) x11osd_drawable_changed(this->xoverlay, this->drawable); + this->ovl_changed = 1; XUnlockDisplay(this->display); #endif } |
