Hi Alex, it is still on my list to look at making the scene browser pane width draggable but I don't know yet if it will be in v4 for sure or not.
In the meantime, you can set up the following script on a shortcut key:
var p = moi.ui.getUIPanel( 'moi://ui/BrowserPane.htm' ); if ( p ) { var w = p.document.body.style.width; if ( w == '' || w == '15em' ) { w = '20em'; } else if ( w == '20em' ) { w = '30em' } else { w = '15em' } p.document.body.style.width = w; }
When you trigger that it will cycle through 3 different widths.
- Michael
|