From c914c1c23b6388803ceec91e20dbb0e3f38397e2 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Thu, 28 Sep 2017 15:14:24 -0700 Subject: [PATCH] vlc-video: Set properties to defer update mode Makes it so that the settings do not update every time the user touches a property of the source, but instead update when the user is finished. --- plugins/vlc-video/vlc-video-source.c | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/vlc-video/vlc-video-source.c b/plugins/vlc-video/vlc-video-source.c index 1e3a09ef8..e601c5f2d 100644 --- a/plugins/vlc-video/vlc-video-source.c +++ b/plugins/vlc-video/vlc-video-source.c @@ -831,6 +831,7 @@ static obs_properties_t *vlcs_properties(void *data) struct dstr path = {0}; obs_property_t *p; + obs_properties_set_flags(ppts, OBS_PROPERTIES_DEFER_UPDATE); obs_properties_add_bool(ppts, S_LOOP, T_LOOP); obs_properties_add_bool(ppts, S_SHUFFLE, T_SHUFFLE); -- GitLab