YANOUSHek / LogCat

A simple adb logcat viewer for Mac OS X written in Objective-C
121 stars 35 forks source link

Preferences window crush #13

Open antonkuzmin opened 10 years ago

antonkuzmin commented 10 years ago

Line 18: self.tfAdbPath.stringValue = [[NSUserDefaults standardUserDefaults] objectForKey:PREFS_ADB_PATH];

if [[NSUserDefaults standardUserDefaults] objectForKey:PREFS_ADB_PATH] returns nil, application crushes.

My workaround: if([[NSUserDefaults standardUserDefaults] objectForKey:PREFS_ADB_PATH] != nil) { self.tfAdbPath.stringValue = [[NSUserDefaults standardUserDefaults] objectForKey:PREFS_ADB_PATH]; }

aramazhari commented 9 years ago

The preference windows disappear after switching between tabs. I tried this on Mavericks and Yosemite and both have the same problem.