mirror of https://github.com/buggins/dlangui.git
Allow individually named DockHost
This commit is contained in:
parent
1720960923
commit
07fcfcc834
|
@ -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));
|
||||
|
|
Loading…
Reference in New Issue