Indragie Karunaratne

Results 82 comments of Indragie Karunaratne

Sadly there is no active development on Flamingo, and nothing planned for the future.

Cool stuff! Looking forward to seeing where this goes :)

Not the most common use case, I'm guessing this is for Shortcat? ;) A workaround is to [create a borderless, transparent `NSWindow`](http://www.cimgf.com/cocoa-code-snippets/nswindow-snippets/), position it over the UI element, and then...

@klaaspieter Thank you!

It sounds like the popover controller is being deallocated. Are you retaining a reference to the `INPopoverController` object?

The only thing ARC does is insert the `-retain` and `-release` calls for you automatically. You still have to create strong **references** to objects you want to keep around by...

You might want to try using the Zombies instrument in Instruments to see when the deallocation happens: https://developer.apple.com/library/ios/recipes/instruments_help-memory-allocations-help/Eliminating_Messages_To_Deallocated_Objects/06_Eliminating_Messages_To_Deallocated_Objects.html.

I think we should be relying on NSImageCell to draw template images instead of expecting super to behave the way we want. I think I tested this earlier and ran...

This isn't being actively developed, but I'd be more than happy to accept a pull request if you want to implement that.

Ah, this is unfortunate. I'll try some workarounds. Thanks!