Hides the toolbar if the user is a recorder.

This commit is contained in:
damencho 2016-03-29 17:28:20 -05:00
parent 7f7d9d5594
commit 06f3ddc822
1 changed files with 2 additions and 1 deletions

View File

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