Difference between revisions of "Talk:Advanced Sculptie Exporter From Maya"
Jump to navigation
Jump to search
m (Removing all content from page) |
m |
||
Line 1: | Line 1: | ||
Unfortunately there's a bug in the MEL implementation in Maya for Linux such that widget control group boxes do not automatically size themselves to fit the widgets they contain as the Windows version does. This MEL script will have to be hand-modified to account for this difference, so that it works on Linux installations of Maya. This bug has been present in Maya since version 6. | |||
In the MEL script, in the global procedure llSculptEditor(), replace this line: | |||
scrollLayout; | |||
with this one: | |||
scrollLayout -childResizable 1 -defineTemplate DefaultTemplate; | |||
and all will be well. | |||
:--[[User:Kalel Venkman|Kalel Venkman]] 19:47, 6 August 2007 (PDT) |
Revision as of 21:29, 6 August 2007
Unfortunately there's a bug in the MEL implementation in Maya for Linux such that widget control group boxes do not automatically size themselves to fit the widgets they contain as the Windows version does. This MEL script will have to be hand-modified to account for this difference, so that it works on Linux installations of Maya. This bug has been present in Maya since version 6.
In the MEL script, in the global procedure llSculptEditor(), replace this line:
scrollLayout;
with this one:
scrollLayout -childResizable 1 -defineTemplate DefaultTemplate;
and all will be well.
- --Kalel Venkman 19:47, 6 August 2007 (PDT)