mirror of
https://github.com/transmission/transmission
synced 2025-02-22 14:10:34 +00:00
streamline the minimal status string code a little
This commit is contained in:
parent
aaaa932625
commit
66bf641f5d
2 changed files with 5 additions and 14 deletions
|
@ -1014,15 +1014,6 @@ void completenessChangeCallback(tr_torrent * torrent, cp_status_t status, void *
|
|||
{
|
||||
switch (fStat->status)
|
||||
{
|
||||
case TR_STATUS_CHECK_WAIT:
|
||||
return [NSLocalizedString(@"Waiting to check existing data", "Torrent -> status string") stringByAppendingEllipsis];
|
||||
break;
|
||||
|
||||
case TR_STATUS_CHECK:
|
||||
return [NSString stringWithFormat: NSLocalizedString(@"Checking existing data (%.2f%%)",
|
||||
"Torrent -> status string"), 100.0 * fStat->recheckProgress];
|
||||
break;
|
||||
|
||||
case TR_STATUS_DOWNLOAD:
|
||||
return [self eta] >= 0 ? [self etaString] : NSLocalizedString(@"Unknown", "Torrent -> remaining time");
|
||||
break;
|
||||
|
@ -1034,7 +1025,7 @@ void completenessChangeCallback(tr_torrent * torrent, cp_status_t status, void *
|
|||
break;
|
||||
|
||||
default:
|
||||
return @"";
|
||||
return [self shortStatusString];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -120,8 +120,8 @@
|
|||
- (NSRect) minimalStatusRectForBounds: (NSRect) bounds
|
||||
{
|
||||
Torrent * torrent = [self representedObject];
|
||||
NSString * string = [torrent isActive] && ![fDefaults boolForKey: @"DisplaySmallStatusRegular"]
|
||||
? [torrent remainingTimeString] : [torrent shortStatusString];
|
||||
NSString * string = [fDefaults boolForKey: @"DisplaySmallStatusRegular"]
|
||||
? [torrent shortStatusString] : [torrent remainingTimeString];
|
||||
return [self rectForMinimalStatusWithString: [self attributedStatusString: string withColor: nil] inBounds: bounds];
|
||||
}
|
||||
|
||||
|
@ -204,8 +204,8 @@
|
|||
NSRect minimalStatusRect;
|
||||
if (minimal)
|
||||
{
|
||||
NSString * string = [torrent isActive] && ![fDefaults boolForKey: @"DisplaySmallStatusRegular"]
|
||||
? [torrent remainingTimeString] : [torrent shortStatusString];
|
||||
NSString * string = [fDefaults boolForKey: @"DisplaySmallStatusRegular"]
|
||||
? [torrent shortStatusString] : [torrent remainingTimeString];
|
||||
NSAttributedString * minimalString = [self attributedStatusString: string withColor: statusColor];
|
||||
minimalStatusRect = [self rectForMinimalStatusWithString: minimalString inBounds: cellFrame];
|
||||
|
||||
|
|
Loading…
Reference in a new issue