How to move left panel to right and remove right one? #15120
-
I'm trying to do like this:
but it failed with:
Best |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The right and left panel handlers are used throughout the One way of "moving the left panel to the right" and "removing the right" could be to:
This way the left panel is essentially gone and every new workspace will open all views to the right. However if you open an old workspace, in which panels were still allowed to be left, then they will still show up on the left, as the layout restore does not go through this code. If you need to handle old workspaces like this, then you need to override the layout restore mechanism. |
Beta Was this translation helpful? Give feedback.
The right and left panel handlers are used throughout the
application-shell
so I don't think you can just dispose their dockPanels, as theapplication-shell
does not expect nor handle this case. This is why you get the error message.One way of "moving the left panel to the right" and "removing the right" could be to:
This way the left panel is essentially gone and every new workspace will open all views t…