diff --git a/macosx/English.lproj/PrefsWindow.nib/classes.nib b/macosx/English.lproj/PrefsWindow.nib/classes.nib index 0526a0926..d2b94f387 100644 --- a/macosx/English.lproj/PrefsWindow.nib/classes.nib +++ b/macosx/English.lproj/PrefsWindow.nib/classes.nib @@ -11,6 +11,7 @@ helpForNetwork = id; importFolderSheetShow = id; incompleteFolderSheetShow = id; + resetWarnings = id; setAutoImport = id; setAutoSize = id; setAutoSpeedLimit = id; diff --git a/macosx/English.lproj/PrefsWindow.nib/info.nib b/macosx/English.lproj/PrefsWindow.nib/info.nib index 904698068..aef426711 100644 --- a/macosx/English.lproj/PrefsWindow.nib/info.nib +++ b/macosx/English.lproj/PrefsWindow.nib/info.nib @@ -9,7 +9,7 @@ 153 294 444 563 268 0 0 1152 842 28 - 294 424 563 307 0 0 1152 842 + 157 403 563 313 0 0 1152 842 41 294 425 563 305 0 0 1152 842 66 diff --git a/macosx/English.lproj/PrefsWindow.nib/keyedobjects.nib b/macosx/English.lproj/PrefsWindow.nib/keyedobjects.nib index 9fc8faa6f..fe90e3ed5 100644 Binary files a/macosx/English.lproj/PrefsWindow.nib/keyedobjects.nib and b/macosx/English.lproj/PrefsWindow.nib/keyedobjects.nib differ diff --git a/macosx/PrefsController.h b/macosx/PrefsController.h index 9ba14453c..6e8c2b0dd 100644 --- a/macosx/PrefsController.h +++ b/macosx/PrefsController.h @@ -62,6 +62,7 @@ - (void) setBadge: (id) sender; - (void) setSound: (id) sender; +- (void) resetWarnings: (id) sender; - (void) setUpdate: (id) sender; - (void) setQueue: (id) sender; diff --git a/macosx/PrefsController.m b/macosx/PrefsController.m index 3ac855e4c..2ec15dc9a 100644 --- a/macosx/PrefsController.m +++ b/macosx/PrefsController.m @@ -432,6 +432,12 @@ [sound play]; } +- (void) resetWarnings: (id) sender +{ + [fDefaults setBool: YES forKey: @"WarningDebug"]; + [fDefaults setBool: YES forKey: @"WarningRemainingSpace"]; +} + - (void) setUpdate: (id) sender { int index = [fUpdatePopUp indexOfSelectedItem];