Changeset 7569
- Timestamp:
- Jan 2, 2009, 2:41:54 AM (12 years ago)
- Location:
- trunk/macosx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/FileNameCell.m
r7568 r7569 227 227 FileListNode * node = (FileListNode *)[self objectValue]; 228 228 229 NSString * percentString;230 229 CGFloat progress = [torrent fileProgress: node]; 231 percentString = progress == 1.0f ? @"100%" : [NSString localizedStringWithFormat: @"%.2f%%", progress * 100.0f];230 NSString * percentString = progress == 1.0f ? @"100%" : [NSString localizedStringWithFormat: @"%.2f%%", progress * 100.0f]; 232 231 233 232 -
trunk/macosx/TorrentCell.m
r7568 r7569 434 434 NSColor * titleColor, * statusColor; 435 435 if ([self backgroundStyle] == NSBackgroundStyleDark) 436 { 437 titleColor = [NSColor whiteColor]; 438 statusColor = [NSColor whiteColor]; 439 } 436 titleColor = statusColor = [NSColor whiteColor]; 440 437 else 441 438 {
Note: See TracChangeset
for help on using the changeset viewer.