Skip to content

Commit ec31084

Browse files
committed
Panel resizing fixes
1 parent 25d9d9a commit ec31084

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

css/panels.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
display: flex;
1414
flex-direction: column;
1515
flex-grow: 1;
16+
height: 40px;
1617
min-height: 133px;
1718
}
1819

js/interface/panels.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -988,7 +988,7 @@ export class Panel extends EventSystem {
988988
this.container.style.height = this.height + 'px';
989989
this.container.classList.add('fixed_height');
990990
} else {
991-
this.container.style.height = this.growable ? '0' : null;
991+
this.container.style.height = null;
992992
}
993993
}
994994
if (!this.fixed_height) this.container.classList.remove('fixed_height');

0 commit comments

Comments
 (0)