To start fresh, run defaults delete com.blacktree.Quicksilver. (Deleting the prefs file won’t do the trick under 10.9.)
First crash is on line 43 of QSWindow.m. It seems self has been freed. If you fix that by adding @synchronized (self) {} or by just storing the result of [self windowNumber] earlier in the method, you can get to the next crash…
Next is line 45 of QSCGSTranstion.m. It happens as soon as you hit “Continue” on the welcome screen. It’s another EXC_BAD_ACCESS but I can’t figure out what this one’s complaining about. All the variables appear to still be valid.
The text was updated successfully, but these errors were encountered:
Should we scrap CGSTransition completely? I think so.
My guess is the crash is coming because something in the private framework has changed, or if it's ARC related we're not saying a return value is retained/released or whatever
To start fresh, run
defaults delete com.blacktree.Quicksilver
. (Deleting the prefs file won’t do the trick under 10.9.)First crash is on line 43 of
QSWindow.m
. It seemsself
has been freed. If you fix that by adding@synchronized (self) {}
or by just storing the result of[self windowNumber]
earlier in the method, you can get to the next crash…Next is line 45 of
QSCGSTranstion.m
. It happens as soon as you hit “Continue” on the welcome screen. It’s anotherEXC_BAD_ACCESS
but I can’t figure out what this one’s complaining about. All the variables appear to still be valid.The text was updated successfully, but these errors were encountered: