Hides the toolbar if the user is a recorder.
This commit is contained in:
parent
7f7d9d5594
commit
06f3ddc822
|
@ -59,7 +59,8 @@ const ToolbarToggler = {
|
|||
* Shows the main toolbar.
|
||||
*/
|
||||
showToolbar () {
|
||||
if (interfaceConfig.filmStripOnly) {
|
||||
// if we are a recorder we do not want to show the toolbar
|
||||
if (interfaceConfig.filmStripOnly || config.iAmRecorder) {
|
||||
return;
|
||||
}
|
||||
let header = $("#header");
|
||||
|
|
Loading…
Reference in New Issue