Announcement
Collapse
No announcement yet.
Quick Settings UI bug
Collapse
X
-
So you maximized the window?
It's not resizable by design, but by the looks of it we might want to change that. In other cases maya can put in a weird size for some window and remember it between sessions.
There's two thing you can do about this:
a) go to your user's Documents folder > maya > maya version > prefs and open a file called windowPrefs.mel. Search for this line:
windowPref -topLeftCorner 1 1 -widthHeight 430 500 -maximized false -parentMain true VRayQS;
and simply edit the width and height to 430 and 500.
b) open the script editor in Maya and run this line in a MEL tab:
window -e -widthHeight 430 500 VRayQS;
Comment