Georg Seifert
Georg Seifert
I would like to have that option, too.
I tried it some time ago to run glyphsLib from within Glyphs. The API should allow it. But it might need some tweaking.
You can put a file "Credits.html" or "Credits.rtf" in your Resource folder and it will be shown in the About box. It you don’t like the style, you build your...
Just for reference I’m using a .xib for the menu and window. The About menu is set up to call `- (void)orderFrontStandardAboutPanel:(id)sender;` on NSApplication.
Is there a better way to declare a property for ObjectiveC properties? In most cases this replacement is only used to remove the `()`. I like to provide a clean,...
Or add some configuration file that can map from (objc) getter/setter to python properties. Then I can decide how my properties look (if PEP8 or not). And that could also...
You could implement `__call__` on those properties and just return the value. Then you both, `obj.someProperty` (new) and `obj.someProperty()` (old) would work. If you can tell me what needs to...
I see. Not a good idea, then. Do you know when you can fix the original issue?
> The alternative is to call [value __pyobjc_PythonObject__] That works. Thanks.