Michal Zelinka

Results 61 comments of Michal Zelinka

This warning seems even more relevant for production builds: ``` Linking a static library that was built with -gmodules, but the module cache was not found. Redistributable static libraries should...

Same output when archiving for App Store, combined with the message I've already suggested: ``` Linking a static library that was built with -gmodules, but the module cache was not...

Gesture preview & note now have a configurable background colour in 3.0.0. 👍

There certainly _is_ a default action ðŸĪ” and it works exactly as you describe; if you don't move the mouse at all, after a short timeout, right click is invoked;...

Uff, I haven't looked at the code for some time 😄 yet it should be as follows: - minimal gesture length value (threshold) seems to be 30 screen points (`AppDelegate.m:382`)...

I _think_ it would be possible to detect which application is actually topmost visible at the point where the gesture starts ðŸĪ” at least that's my idea how that possibly...

Thanks for the details! 👍 Yea, I was expecting Accessibility framework to help with it, as pretty much the whole functionality of MacGesture relies on it as well; I'd say...

Same issue in our project, moved everything to Project section in our branch. This may be an interesting note on this: > Technically, the problem isn't that the headers are...

I've been dealing with this as well in our project. You can temporarily disable iCloud sync: ``` [[NSURL fileURLWithPath:[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) firstObject]] setResourceValue:[NSNumber numberWithBool:YES] forKey:NSURLIsExcludedFromBackupKey error:nil]; ``` for the whole...

Yup, there are many nasty cirlces/retaining stuff around annotations and layers code. Hopefully there's some area for clean up.