1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-20 13:16:53 +00:00

add tooltips for status bar total speeds; update news

This commit is contained in:
Mitchell Livingston 2007-12-01 17:31:52 +00:00
parent 23f7686de0
commit 1cd5a05fb3
2 changed files with 4 additions and 0 deletions

1
NEWS
View file

@ -12,6 +12,7 @@ NEWS file for Transmission <http://transmission.m0k.org/>
+ Pieces Bar (return of Advanced Bar)
+ Availability Bar (overlay on regular bar)
+ Redesigned Leopard-like look
+ Leopard: Fix for NAT-PMP
+ Leopard: Time Machine will ignore incomplete downloads
+ Display remaining time for seeding transfers
+ Sort by total activity

View file

@ -251,6 +251,9 @@ void sleepCallBack(void * controller, io_service_t y, natural_t messageType, voi
//set up status bar
[fStatusBar setHidden: YES];
[fTotalDLField setToolTip: NSLocalizedString(@"Total download speed", "Status Bar -> speed tooltip")];
[fTotalULField setToolTip: NSLocalizedString(@"Total upload speed", "Status Bar -> speed tooltip")];
NSRect statusBarFrame = [fStatusBar frame];
statusBarFrame.size.width = windowSize.width;
[fStatusBar setFrame: statusBarFrame];