summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-10-09 11:26:37 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-02 04:18:09 +0200
commit41657da91ec38882ddfb8cbfd6bb2c23b3de894c (patch)
tree05424e47a226ada59923f5cf5aba3d0b8e2f238b /libvo
parent79f6a2c868e19145a9cd9a67d22b6956b55285fa (diff)
downloadmpv-41657da91ec38882ddfb8cbfd6bb2c23b3de894c.tar.bz2
mpv-41657da91ec38882ddfb8cbfd6bb2c23b3de894c.tar.xz
vo_xvidix: reconfigure also on window move
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32457 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_xvidix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/vo_xvidix.c b/libvo/vo_xvidix.c
index f6c39f9f77..c6bcfcbab9 100644
--- a/libvo/vo_xvidix.c
+++ b/libvo/vo_xvidix.c
@@ -314,7 +314,7 @@ static void check_events(void)
{
const int event = vo_x11_check_events(mDisplay);
- if ((event & VO_EVENT_RESIZE) || (event & VO_EVENT_EXPOSE))
+ if (event & (VO_EVENT_RESIZE | VO_EVENT_MOVE | VO_EVENT_EXPOSE))
set_window(0);
return;