From 97b9cf64023967e177724373204ad15f5b618b2a Mon Sep 17 00:00:00 2001 From: Luke Barnard Date: Thu, 26 Oct 2017 09:58:46 +0100 Subject: [PATCH] Actually use the synced setting --- src/components/views/voip/VideoView.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/views/voip/VideoView.js b/src/components/views/voip/VideoView.js index 94cc74960f..8fbc95697d 100644 --- a/src/components/views/voip/VideoView.js +++ b/src/components/views/voip/VideoView.js @@ -112,7 +112,9 @@ module.exports = React.createClass({ document.webkitFullscreenElement); const maxVideoHeight = fullscreenElement ? null : this.props.maxHeight; const localVideoFeedClasses = classNames("mx_VideoView_localVideoFeed", - {"mx_VideoView_localVideoFeed_flipped": UserSettingsStore.getSyncedSetting} + { "mx_VideoView_localVideoFeed_flipped": + UserSettingsStore.getSyncedSetting('VideoView.flipVideoHorizontally'), + }, ); return (