Steve Theodore
Steve Theodore
I don't think it'll be much use to non-scripters, but I thought it might help with visibility for the project. An MSI would make it easier for beginners, I suppose....
We could certainly do that too -- although most Maya I know don't use pypi to set up their environments due to the distribution issues. It's not a lot of...
So, would anybody like to volunteer to spearhead putting together a branch to make a Maya App Store version? For CreativeCrash, all we need to do is to zip up...
OK, uploaded it to CreativeCrash. Not sure when it will clear moderation https://www.highend3d.com/maya/script/free-mgui-simplified-gui-scripting-for-maya
Looks like it cleared moderation. Tell your friends :)
Does this fail for a case like this? dummy = {'backgroundColor': 'red', 'width': 200} Button(style=dummy)
Maybe we just give it an empty, like this: ``` def _set_stylesheet(self, css): css = css or {} if not isinstance(css, CSS): css = CSS(**css) #
It's just syntax sugar for users, since there are a lot of use cases where you just want to say 'use these options' and the more elaborate stuff is not...
Doh, we could just target `Control` when we make the fake CSS.... def _set_stylesheet(self, css): if not isinstance(css, CSS): css = CSS(gui.Control, **css) self._style = css css.apply_recursive(self) `self.key` would apply...
Which one are you thinking of? The one with the menu selector?