Index: /trunk/PrefController.m
===================================================================
--- /trunk/PrefController.m (revision 38)
+++ /trunk/PrefController.m (revision 39)
@@ -23,4 +23,5 @@
 	NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
 	[self setService:[userDefaults objectForKey:@"service type"]];
+
 	// Set the general pref view control values
 	[enable_growl setObjectValue:[userDefaults objectForKey:@"enable_growl"]];
@@ -71,6 +72,4 @@
 	allowedPanels = [NSArray arrayWithObjects:@"General", @"Image", @"Text", NSToolbarFlexibleSpaceItemIdentifier, nil];
 
-	// [tp_image_dropdown setState:NSOffState];
-	// [tp_text_dropdown setState:NSOffState];
 	[tp_image_dropdown removeAllItems];
 	[tp_text_dropdown removeAllItems];
Index: /trunk/Vox.m
===================================================================
--- /trunk/Vox.m (revision 36)
+++ /trunk/Vox.m (revision 39)
@@ -122,6 +122,6 @@
 - (void) appNotify: (NSString *) message title: (NSString *) title {
 	NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
-	NSString *usegrowl = [userDefaults objectForKey:@"usegrowl"];
-	if ([usegrowl isEqualToString:@"1"]) {
+	// NSString *usegrowl = [userDefaults objectForKey:@"enable_growl"];
+	if ([userDefaults objectForKey:@"enable_growl"]) {
 		[GrowlApplicationBridge notifyWithTitle:title description:message notificationName:@"Fence" iconData:nil priority:0 isSticky:NO clickContext:nil];
 	}
Index: /trunk/TypePad.m
===================================================================
--- /trunk/TypePad.m (revision 36)
+++ /trunk/TypePad.m (revision 39)
@@ -139,6 +139,6 @@
 - (void) appNotify: (NSString *) message title: (NSString *) title {
 	NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
-	NSString *usegrowl = [userDefaults objectForKey:@"usegrowl"];
-	if ([usegrowl isEqualToString:@"1"]) {
+	// NSString *usegrowl = [userDefaults objectForKey:@"enable_growl"];
+	if ([userDefaults objectForKey:@"enable_growl"]) {
 			[GrowlApplicationBridge notifyWithTitle:title description:message notificationName:@"Fence" iconData:nil priority:0 isSticky:NO clickContext:nil];
 	}
