From f406f49647c3901465e7e02becc7c5b23665d503 Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Sun, 19 Aug 2012 19:08:18 +0000 Subject: [PATCH] remove unnecessary 10.8 checks --- macosx/PrefsController.m | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/macosx/PrefsController.m b/macosx/PrefsController.m index 60e26c231..c406d1611 100644 --- a/macosx/PrefsController.m +++ b/macosx/PrefsController.m @@ -1488,9 +1488,7 @@ [fGrowlAppButton setHidden: YES]; const BOOL onMtLion = [NSApp isOnMountainLionOrBetter]; - [fBuiltInGrowlButton setState: !onMtLion && [fDefaults boolForKey: @"DisplayNotifications"]]; - [fBuiltInGrowlButton setEnabled: !onMtLion]; - + [fBuiltInGrowlButton setState: [fDefaults boolForKey: @"DisplayNotifications"]]; } }