Fix meshes panel height calculation.

This commit is contained in:
kovacsv 2021-11-08 14:25:24 +01:00
parent 66959b7ad6
commit 1c867f83fe

View File

@ -360,7 +360,7 @@ OV.NavigatorMeshesPanel = class extends OV.NavigatorPanel
let buttonsHeight = this.buttonsDiv.outerHeight (true);
let popupHeight = this.popupDiv.outerHeight (true);
let height = this.parentDiv.height ();
this.treeDiv.outerHeight (height - titleHeight - buttonsHeight - popupHeight, true);
this.treeDiv.outerHeight (height - titleHeight - buttonsHeight - popupHeight);
}
Clear ()