瀏覽代碼

Fix LoginDialog hidden by gUM-Overlay (#766)

* Fix LoginDialog hidden by gUM-Overlay

Running FF46 on Linux and Android. The gUM Dialog (zIndex 1013) hides the LoginDialog (zIndex 999 by default) , but the gUM Dialog will only be resolved when connection is completed (aka hideUserMediaPermissionsGuidanceOverlay is called once the Promise.all in createInitialLocalTracksAndConnect is resolved and that Promise includes "connect").

Fix this by increasing the connection dialog zIndex.

Alternatively this could by fixed by handling gUM and connection one after the other.

* remove whitespace change
master
michael-dev 6 年之前
父節點
當前提交
f6d3ca23a5
共有 1 個檔案被更改,包括 2 行新增1 行删除
  1. 2
    1
      modules/UI/authentication/LoginDialog.js

+ 2
- 1
modules/UI/authentication/LoginDialog.js 查看文件

@@ -113,7 +113,8 @@ function LoginDialog(successCallback, cancelCallback) {
113 113
         states,
114 114
         {
115 115
             closeText: '',
116
-            persistent: true
116
+            persistent: true,
117
+            zIndex: 1020
117 118
         },
118 119
         null
119 120
     );

Loading…
取消
儲存