From 1cd5a05fb39c6b31ad81c23bcf029e905c81402a Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Sat, 1 Dec 2007 17:31:52 +0000 Subject: [PATCH] add tooltips for status bar total speeds; update news --- NEWS | 1 + macosx/Controller.m | 3 +++ 2 files changed, 4 insertions(+) diff --git a/NEWS b/NEWS index 28f10db46..56aeef7bf 100644 --- a/NEWS +++ b/NEWS @@ -12,6 +12,7 @@ NEWS file for Transmission + 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 diff --git a/macosx/Controller.m b/macosx/Controller.m index 4e87b7389..b297c444c 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -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];