Hi Cornel, yes starting with version 4 you can just drag on the edge of the Scene Browser pane to make it wider.
Here's a demo:
If it doesn't work for you then it's probably due to one of the UI mods that you have installed.
You probably have ended up with an old v3 version of MainWindowLayout.xml in there missing the resizable="true" attribute. Your MainWindowLayout.xml file should look like this:
code:
<UILayout>
<UIPanel dock="right" src="moi://ui/SidePane.htm"/>
<UIPanel dock="bottom" src="moi://ui/CommandBar.htm"/>
<UIPanel dock="right" resizable="true" defaultWidth="15em" src="moi://ui/BrowserPane.htm"/>
<ViewPanel dock="fill" />
</UILayout>
Check if you don't have the resizable="true" as on line #6 above. If not you have an old version of that file from v3, put in the above contents instead.
- Michael
|