mirror of
https://github.com/mathuo/dockview
synced 2025-05-02 09:38:26 +00:00
bug: min dimensions incorrectly set in dockview
This commit is contained in:
parent
cabc4e901b
commit
8646ea43d8
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user