mirror of
https://github.com/transmission/transmission.git
synced 2026-05-08 09:39:08 +01:00
uncheck "delete original" when unchecking "copy torrent"
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
setAutoSpeedLimitCheck = id;
|
||||
setAutoSpeedLimitHour = id;
|
||||
setBadge = id;
|
||||
setCopyTorrents = id;
|
||||
setDownloadLocation = id;
|
||||
setNat = id;
|
||||
setPort = id;
|
||||
|
||||
Binary file not shown.
@@ -66,6 +66,8 @@
|
||||
|
||||
- (void) setQueueNumber: (id) sender;
|
||||
|
||||
- (void) setCopyTorrents: (id) sender;
|
||||
|
||||
- (void) setDownloadLocation: (id) sender;
|
||||
- (void) folderSheetShow: (id) sender;
|
||||
|
||||
|
||||
@@ -321,7 +321,6 @@
|
||||
[[NSNotificationCenter defaultCenter] postNotificationName: @"AutoSpeedLimitChange" object: self];
|
||||
}
|
||||
|
||||
#warning check if same value
|
||||
- (void) setAutoSpeedLimitHour: (id) sender
|
||||
{
|
||||
[[NSNotificationCenter defaultCenter] postNotificationName: @"AutoSpeedLimitChange" object: self];
|
||||
@@ -367,12 +366,17 @@
|
||||
[fUpdater scheduleCheckWithInterval: seconds];
|
||||
}
|
||||
|
||||
#warning out of range/wrong value
|
||||
- (void) setQueueNumber: (id) sender
|
||||
{
|
||||
[[NSNotificationCenter defaultCenter] postNotificationName: @"GlobalStartSettingChange" object: self];
|
||||
}
|
||||
|
||||
- (void) setCopyTorrents: (id) sender
|
||||
{
|
||||
if (![fDefaults boolForKey: @"SavePrivateTorrent"])
|
||||
[fDefaults setBool: NO forKey: @"DeleteOriginalTorrent"];
|
||||
}
|
||||
|
||||
- (void) setDownloadLocation: (id) sender
|
||||
{
|
||||
//download folder
|
||||
|
||||
Reference in New Issue
Block a user