Browse Source

Hides the toolbar if the user is a recorder.

j8
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
      * Shows the main toolbar.
59
      * Shows the main toolbar.
60
      */
60
      */
61
     showToolbar () {
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
             return;
64
             return;
64
         }
65
         }
65
         let header = $("#header");
66
         let header = $("#header");

Loading…
Cancel
Save