Hi James, one thing that's related to that which you can do now is the option under Options > General > Side pane position: "Inside".
That will remove the Scene Browser as a separate panel and instead make it show up as a palette at the bottom of the other tools.
Also another thing you can use currently is to set up a keyboard shortcut that will toggle the side pane visibility. To do that set up a shortcut key under Options > Shortcut keys with this as the command part:
script: /* Toggle Side pane visibility */ var style = moi.ui.sidepane.document.body.style; style.display = (style.display ? '' : 'none' );
- Michael
|