ソースを参照

Enables local video flip menu by default.

j8
damencho 6年前
コミット
0dad99c3b7
3個のファイルの変更6行の追加3行の削除
  1. 4
    1
      config.js
  2. 1
    1
      modules/UI/videolayout/LocalVideo.js
  3. 1
    1
      react/features/base/config/functions.any.js

+ 4
- 1
config.js ファイルの表示

@@ -414,6 +414,10 @@ var config = {
414 414
     // use only.
415 415
     // _desktopSharingSourceDevice: 'sample-id-or-label'
416 416
 
417
+    // A property to disable the right click context menu for localVideo
418
+    // the menu has option to flip the locally seen video for local presentations
419
+    // disableLocalVideoFlip: false
420
+
417 421
     // List of undocumented settings used in jitsi-meet
418 422
     /**
419 423
      _immediateReloadThreshold
@@ -428,7 +432,6 @@ var config = {
428 432
      dialOutCodesUrl
429 433
      disableRemoteControl
430 434
      displayJids
431
-     enableLocalVideoFlip
432 435
      etherpad_base
433 436
      externalConnectUrl
434 437
      firefox_fake_device

+ 1
- 1
modules/UI/videolayout/LocalVideo.js ファイルの表示

@@ -32,7 +32,7 @@ function LocalVideo(VideoLayout, emitter, streamEndedCallback) {
32 32
 
33 33
     this.localVideoId = null;
34 34
     this.bindHoverHandler();
35
-    if (config.enableLocalVideoFlip) {
35
+    if (!config.disableLocalVideoFlip) {
36 36
         this._buildContextMenu();
37 37
     }
38 38
     this.isLocal = true;

+ 1
- 1
react/features/base/config/functions.any.js ファイルの表示

@@ -101,7 +101,7 @@ const WHITELISTED_KEYS = [
101 101
     'enableDisplayNameInStats',
102 102
     'enableLayerSuspension',
103 103
     'enableLipSync',
104
-    'enableLocalVideoFlip',
104
+    'disableLocalVideoFlip',
105 105
     'enableRemb',
106 106
     'enableStatsID',
107 107
     'enableTalkWhileMuted',

読み込み中…
キャンセル
保存