mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-15 20:54:59 +08:00
shift-click the video button to screenshare rather than overriding the button entirely.
This commit is contained in:
parent
8ff7d87b38
commit
98ea35253a
@ -158,6 +158,12 @@ function _onAction(payload) {
|
||||
newCall.placeVoiceCall();
|
||||
}
|
||||
else if (payload.type === 'video') {
|
||||
newCall.placeVideoCall(
|
||||
payload.remote_element,
|
||||
payload.local_element
|
||||
);
|
||||
}
|
||||
else if (payload.type === 'screensharing') {
|
||||
newCall.placeScreenSharingCall(
|
||||
payload.remote_element,
|
||||
payload.local_element
|
||||
|
@ -69,10 +69,10 @@ module.exports = {
|
||||
});
|
||||
},
|
||||
|
||||
onVideoClick: function() {
|
||||
onVideoClick: function(e) {
|
||||
dis.dispatch({
|
||||
action: 'place_call',
|
||||
type: "video",
|
||||
type: e.shiftKey ? "screensharing" : "video",
|
||||
room_id: this.props.room.roomId
|
||||
});
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user