ソースを参照

Hides the toolbar if the user is a recorder.

master
damencho 10年前
コミット
06f3ddc822
1個のファイルの変更2行の追加1行の削除
  1. 2
    1
      modules/UI/toolbars/ToolbarToggler.js

+ 2
- 1
modules/UI/toolbars/ToolbarToggler.js ファイルの表示

@@ -59,7 +59,8 @@ const ToolbarToggler = {
59 59
      * Shows the main toolbar.
60 60
      */
61 61
     showToolbar () {
62
-        if (interfaceConfig.filmStripOnly) {
62
+        // if we are a recorder we do not want to show the toolbar
63
+        if (interfaceConfig.filmStripOnly || config.iAmRecorder) {
63 64
             return;
64 65
         }
65 66
         let header = $("#header");

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