[vlc-commits] vout: win32: Always check for a rect update when autoscale/zoom changes
Hugo Beauzée-Luyssen
git at videolan.org
Wed May 3 12:39:21 CEST 2017
vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Tue May 2 18:58:12 2017 +0200| [9822569045d24dcca521fcd2c01846c65b91887e] | committer: Hugo Beauzée-Luyssen
vout: win32: Always check for a rect update when autoscale/zoom changes
refs #18258
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9822569045d24dcca521fcd2c01846c65b91887e
---
modules/video_output/win32/common.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/video_output/win32/common.c b/modules/video_output/win32/common.c
index 8ef0aef529..328139bee4 100644
--- a/modules/video_output/win32/common.c
+++ b/modules/video_output/win32/common.c
@@ -691,7 +691,7 @@ int CommonControl(vout_display_t *vd, int query, va_list args)
UpdateRects(vd, cfg, source, true);
} else {
cfg = va_arg(args, const vout_display_cfg_t *);
- UpdateRects(vd, cfg, NULL, false);
+ UpdateRects(vd, cfg, NULL, true);
}
return VLC_SUCCESS;
}
More information about the vlc-commits
mailing list