mirror of
https://github.com/transmission/transmission
synced 2024-12-26 01:27:28 +00:00
small rearrangement
This commit is contained in:
parent
a51b62ac73
commit
dd7900192a
2 changed files with 4 additions and 5 deletions
|
@ -173,11 +173,9 @@
|
|||
[fHashField setStringValue: hashString];
|
||||
[fHashField setToolTip: hashString];
|
||||
|
||||
[fTorrentLocationField setStringValue: [[torrent torrentLocationString]
|
||||
stringByAbbreviatingWithTildeInPath]];
|
||||
[fTorrentLocationField setStringValue: [torrent torrentLocationString]];
|
||||
[fTorrentLocationField setToolTip: [torrent torrentLocation]];
|
||||
[fDataLocationField setStringValue: [[torrent dataLocation]
|
||||
stringByAbbreviatingWithTildeInPath]];
|
||||
[fDataLocationField setStringValue: [[torrent dataLocation] stringByAbbreviatingWithTildeInPath]];
|
||||
[fDataLocationField setToolTip: [torrent dataLocation]];
|
||||
[fDateStartedField setObjectValue: [torrent date]];
|
||||
}
|
||||
|
|
|
@ -362,7 +362,8 @@
|
|||
|
||||
- (NSString *) torrentLocationString
|
||||
{
|
||||
return fPrivateTorrent ? @"Transmission Support Folder" : fPublicTorrentLocation;
|
||||
return fPrivateTorrent ? @"Transmission Support Folder"
|
||||
: [fPublicTorrentLocation stringByAbbreviatingWithTildeInPath];
|
||||
}
|
||||
|
||||
- (NSString *) dataLocation
|
||||
|
|
Loading…
Reference in a new issue