Browse Source

Hides the toolbar if the user is a recorder.

master
damencho 9 years ago
parent
commit
06f3ddc822
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      modules/UI/toolbars/ToolbarToggler.js

+ 2
- 1
modules/UI/toolbars/ToolbarToggler.js View File

@@ -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");

Loading…
Cancel
Save