From 21af7b2fcd54c0c50e8e1df372edc1d1a992696d Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Sun, 13 May 2012 12:45:22 -0400 Subject: [PATCH] Fixed the "Folders" mode in SE which was broken since the conversion to objp. --- cocoa/se/ResultWindow.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cocoa/se/ResultWindow.m b/cocoa/se/ResultWindow.m index 96f1caaa..0d053a83 100644 --- a/cocoa/se/ResultWindow.m +++ b/cocoa/se/ResultWindow.m @@ -39,7 +39,7 @@ http://www.hardcoded.net/licenses/bsd_license - (void)setScanOptions { NSUserDefaults *ud = [NSUserDefaults standardUserDefaults]; - [model setScanType:n2b([ud objectForKey:@"scanType"])]; + [model setScanType:n2i([ud objectForKey:@"scanType"])]; [model setMinMatchPercentage:n2i([ud objectForKey:@"minMatchPercentage"])]; [model setWordWeighting:n2b([ud objectForKey:@"wordWeighting"])]; [model setMixFileKind:n2b([ud objectForKey:@"mixFileKind"])];