1
0
Fork 0
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:
Mitchell Livingston 2006-06-15 22:57:01 +00:00
parent ae2c0eee33
commit bfb8a06a70
2 changed files with 4 additions and 4 deletions

View file

@ -39,8 +39,8 @@
}
- (void) updateBadgeWithCompleted: (int) completed
uploadRate: (int) uploadRate
downloadRate: (int) downloadRate;
uploadRate: (float) uploadRate
downloadRate: (float) downloadRate;
- (void) clearBadge;
@end

View file

@ -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];