mirror of
https://github.com/transmission/transmission
synced 2025-02-12 09:25:03 +00:00
Don't round dock badging speeds.
This commit is contained in:
parent
ae2c0eee33
commit
bfb8a06a70
2 changed files with 4 additions and 4 deletions
|
@ -39,8 +39,8 @@
|
|||
}
|
||||
|
||||
- (void) updateBadgeWithCompleted: (int) completed
|
||||
uploadRate: (int) uploadRate
|
||||
downloadRate: (int) downloadRate;
|
||||
uploadRate: (float) uploadRate
|
||||
downloadRate: (float) downloadRate;
|
||||
- (void) clearBadge;
|
||||
|
||||
@end
|
||||
|
|
|
@ -72,8 +72,8 @@
|
|||
}
|
||||
|
||||
- (void) updateBadgeWithCompleted: (int) completed
|
||||
uploadRate: (int) uploadRate
|
||||
downloadRate: (int) downloadRate
|
||||
uploadRate: (float) uploadRate
|
||||
downloadRate: (float) downloadRate
|
||||
{
|
||||
NSImage * dockIcon = nil;
|
||||
NSSize iconSize = [fDockIcon size];
|
||||
|
|
Loading…
Reference in a new issue