Hi,
I have an application that create dockable dynamically and set them the dockableproperty.
I noticed that the order in wich I split the dockable into the station affect the final layout
for example :
split.drop(a, SplitDockProperty.WEST);
split.drop(c, SplitDockProperty.SOUTH);
split.drop(b, SplitDockProperty.EAST);
and
split.drop(a, SplitDockProperty.WEST);
split.drop(b, SplitDockProperty.EAST);
split.drop(c, SplitDockProperty.SOUTH);
will have different output (check attached)
Any help how can I define my output?
Thank you