Allow individually named DockHost

This commit is contained in:
James Johnson 2018-04-05 03:09:04 -04:00
parent 1720960923
commit 07fcfcc834
1 changed files with 5 additions and 1 deletions

View File

@ -205,7 +205,11 @@ class DockHost : WidgetGroupDefaultDrawing {
}
this() {
super("DOCK_HOST");
this("DOCK_HOST");
}
this(string ID) {
super(ID);
styleId = STYLE_DOCK_HOST;
addChild(_topSpace.initialize(this, DockAlignment.Top));
addChild(_bottomSpace.initialize(this, DockAlignment.Bottom));