fix toolbar disappearing

This commit is contained in:
Dante Ruiz 2018-04-04 16:30:06 -07:00
parent 475a3a29ac
commit 31783726a8

View file

@ -327,7 +327,10 @@ FocusScope {
for (var index = 0; index < desktop.visibleChildren.length; index++) {
var child = desktop.visibleChildren[index];
if (child.topLevelWindow && child.hasOwnProperty("modality")) {
child.setShown(false);
var TOOLBAR_NAME = "com.highfidelity.interface.toolbar.system"
if (child.objectName !== TOOLBAR_NAME) {
child.setShown(false);
}
}
}
}