mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 04:21:57 +03:00
floor default section height
This commit is contained in:
parent
6e55ebdab7
commit
d833174d68
1 changed files with 2 additions and 1 deletions
|
@ -81,10 +81,11 @@ export class Layout {
|
|||
|
||||
this._sections = sections;
|
||||
const totalHeight = this._getAvailableHeight();
|
||||
const defaultHeight = Math.floor(totalHeight / this._sections.length);
|
||||
this._sections.forEach((section, i) => {
|
||||
if (!this._sectionHeights[section.id]) {
|
||||
this._sectionHeights[section.id] = clamp(
|
||||
totalHeight / this._sections.length,
|
||||
defaultHeight,
|
||||
this._getMinHeight(i),
|
||||
this._getMaxHeight(i),
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue