mirror of https://github.com/mpv-player/mpv
vo_xvidix: reconfigure also on window move
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32457 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
79f6a2c868
commit
41657da91e
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue