Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
How to detect if this option is off and if it is off to turn it on, any example in Mel language?
Solved! Go to Solution.
How to detect if this option is off and if it is off to turn it on, any example in Mel language?
Solved! Go to Solution.
int $fit = `optionVar -q graphEditorAutoFit`;
if ($fit==0){
optionVar -intValue graphEditorAutoFit 1;
}
I hope it helps