bug: min dimensions incorrectly set in dockview

This commit is contained in:
mathuo 2021-03-29 21:42:25 +01:00
parent cabc4e901b
commit 8646ea43d8

View File

@ -28,6 +28,22 @@ export class GroupviewPanel extends GridviewPanel {
return this._group;
}
get minimumHeight() {
return this._group.minimumHeight;
}
get maximumHeight() {
return this._group.maximumHeight;
}
get minimumWidth() {
return this._group.minimumWidth;
}
get maximumWidth() {
return this._group.maximumWidth;
}
constructor(
accessor: IDockviewComponent,
id: string,