turn the open window on by default

This commit is contained in:
Mitchell Livingston 2008-01-05 04:18:07 +00:00
parent 2dc92e4483
commit d63d29bbbe
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@
<key>DisplayStatusProgressSelected</key>
<false/>
<key>DownloadAsk</key>
<false/>
<true/>
<key>DownloadFolder</key>
<string>~/Downloads</string>
<key>DownloadLimit</key>

View File

@ -68,7 +68,7 @@
if ((choice = [fDefaults stringForKey: @"DownloadChoice"]))
{
[fDefaults setBool: [choice isEqualToString: @"Constant"] forKey: @"DownloadLocationConstant"];
[fDefaults setBool: [choice isEqualToString: @"Ask"] forKey: @"DownloadAsk"];
[fDefaults setBool: YES forKey: @"DownloadAsk"];
[fDefaults removeObjectForKey: @"DownloadChoice"];
}