Fix resize in case of silly zooms.

This commit is contained in:
kovacsv 2021-12-17 19:09:32 +01:00
parent aec0d4adc7
commit 4d8a459a86

View File

@ -68,9 +68,11 @@ OV.Website = class
let navigatorWidth = 0; let navigatorWidth = 0;
let sidebarWidth = 0; let sidebarWidth = 0;
let safetyMargin = 0;
if (!OV.IsSmallWidth ()) { if (!OV.IsSmallWidth ()) {
navigatorWidth = this.navigator.GetWidth (); navigatorWidth = this.navigator.GetWidth ();
sidebarWidth = this.sidebar.GetWidth (); sidebarWidth = this.sidebar.GetWidth ();
safetyMargin = 1;
} }
const minContentWidth = 50; const minContentWidth = 50;
@ -81,10 +83,11 @@ OV.Website = class
} }
let contentHeight = windowHeight - headerHeight; let contentHeight = windowHeight - headerHeight;
console.log (contentWidth);
OV.SetDomElementOuterHeight (this.parameters.introDiv, contentHeight); OV.SetDomElementOuterHeight (this.parameters.introDiv, contentHeight);
this.navigator.Resize (contentHeight); this.navigator.Resize (contentHeight);
this.sidebar.Resize (contentHeight); this.sidebar.Resize (contentHeight);
this.viewer.Resize (contentWidth, contentHeight); this.viewer.Resize (contentWidth - safetyMargin, contentHeight);
} }
OnSmallWidthChanged () OnSmallWidthChanged ()