<@U0BJ35747> The Workspace in release 1.6.1 only s...
# tornadofx
e
@hastebrot The Workspace in release 1.6.1 only supports docking of Views in the "editor area" if you will. Stuff docked here will be pushed onto the navigation stack so you can go back and forth between the docked views with the arrows in the top of the workspace. I pushed support for Drawer integration into the Workspace yesterday, so now you can do
with(workspace.leftDrawer) { item("Some item") { ...
etc to add drawers. If you add a Drawer in the
onDock
callback of a View, the drawers you add are removed when the view is undocked. If you add them in the base Workspace class or in the
onBeforeShow
callback of the App class, it will stay there forever.