aboutsummaryrefslogtreecommitdiff
path: root/app/features/conference/components/Conference.js
diff options
context:
space:
mode:
authorSaúl Ibarra Corretgé <s@saghul.net>2020-04-14 10:21:03 +0200
committerSaúl Ibarra Corretgé <s@saghul.net>2020-04-14 13:21:19 +0200
commit2794692cbf43e17eac3ec87b72635315d6f919e1 (patch)
tree5e717b5a798c9ea0b7b00cf9dc39c0607827faef /app/features/conference/components/Conference.js
parent0e93d36e9a64675240282f5ea3e8a5a91010f230 (diff)
Fixup always on top window setting
- Style - Layout - Add spotlight
Diffstat (limited to 'app/features/conference/components/Conference.js')
-rw-r--r--app/features/conference/components/Conference.js13
1 files changed, 3 insertions, 10 deletions
diff --git a/app/features/conference/components/Conference.js b/app/features/conference/components/Conference.js
index 940653b..8d02fe3 100644
--- a/app/features/conference/components/Conference.js
+++ b/app/features/conference/components/Conference.js
@@ -403,24 +403,17 @@ class Conference extends Component<Props, State> {
* Maps (parts of) the redux state to the React props.
*
* @param {Object} state - The redux state.
- * @returns {{
- * _avatarURL: string,
- * _email: string,
- * _name: string,
- * _serverURL: string,
- * _startWithAudioMuted: boolean,
- * _startWithVideoMuted: boolean
- * }}
+ * @returns {Props}
*/
function _mapStateToProps(state: Object) {
return {
+ _alwaysOnTopWindowEnabled: state.settings.alwaysOnTopWindowEnabled,
_avatarURL: state.settings.avatarURL,
_email: state.settings.email,
_name: state.settings.name,
_serverURL: state.settings.serverURL,
_startWithAudioMuted: state.settings.startWithAudioMuted,
- _startWithVideoMuted: state.settings.startWithVideoMuted,
- _alwaysOnTopWindowEnabled: state.settings.alwaysOnTopWindowEnabled
+ _startWithVideoMuted: state.settings.startWithVideoMuted
};
}