summaryrefslogtreecommitdiffstats
path: root/chrome/browser
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-29 05:53:49 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-29 05:53:49 +0000
commitd88c79dfcb6d7fe424b01f8def2824081b060081 (patch)
tree23f518289d66733fff9d2f1b336a41041ac20d78 /chrome/browser
parent452be197b1bfd23ab71db38cea5655bda0e8cc24 (diff)
downloadchromium_src-d88c79dfcb6d7fe424b01f8def2824081b060081.zip
chromium_src-d88c79dfcb6d7fe424b01f8def2824081b060081.tar.gz
chromium_src-d88c79dfcb6d7fe424b01f8def2824081b060081.tar.bz2
Use Lucida Grande instead of Helvetica for "Show all downloads..." link in download shelf.
BUG=20343 TEST=Look at it. Review URL: http://codereview.chromium.org/173621 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24854 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r--chrome/browser/cocoa/download_shelf_controller.mm3
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/cocoa/download_shelf_controller.mm b/chrome/browser/cocoa/download_shelf_controller.mm
index a2fba89..16fc0c7 100644
--- a/chrome/browser/cocoa/download_shelf_controller.mm
+++ b/chrome/browser/cocoa/download_shelf_controller.mm
@@ -71,10 +71,13 @@ const NSTimeInterval kDownloadItemOpenDuration = 0.8;
[[NSParagraphStyle defaultParagraphStyle] mutableCopy]);
[paragraphStyle.get() setAlignment:NSRightTextAlignment];
+ NSFont* font = [NSFont systemFontOfSize:
+ [NSFont systemFontSizeForControlSize:NSRegularControlSize]];
NSDictionary* linkAttributes = [NSDictionary dictionaryWithObjectsAndKeys:
@"", NSLinkAttributeName,
[NSCursor pointingHandCursor], NSCursorAttributeName,
paragraphStyle.get(), NSParagraphStyleAttributeName,
+ font, NSFontAttributeName,
nil];
NSString* text =
base::SysWideToNSString(l10n_util::GetString(IDS_SHOW_ALL_DOWNLOADS));