1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-26 09:37:56 +00:00

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> <key>DisplayStatusProgressSelected</key>
<false/> <false/>
<key>DownloadAsk</key> <key>DownloadAsk</key>
<false/> <true/>
<key>DownloadFolder</key> <key>DownloadFolder</key>
<string>~/Downloads</string> <string>~/Downloads</string>
<key>DownloadLimit</key> <key>DownloadLimit</key>

View file

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