|
@@ -28,6 +28,12 @@ import {
|
28
|
28
|
export function selectParticipantInLargeVideo(participant: ?string) {
|
29
|
29
|
return (dispatch: Dispatch<any>, getState: Function) => {
|
30
|
30
|
const state = getState();
|
|
31
|
+
|
|
32
|
+ // Keep Etherpad open.
|
|
33
|
+ if (state['features/etherpad'].editing) {
|
|
34
|
+ return;
|
|
35
|
+ }
|
|
36
|
+
|
31
|
37
|
const participantId = participant ?? _electParticipantInLargeVideo(state);
|
32
|
38
|
const largeVideo = state['features/large-video'];
|
33
|
39
|
const remoteScreenShares = state['features/video-layout'].remoteScreenShares;
|