From 90809de024ac572e6db7265984ea9e13aa2d4075 Mon Sep 17 00:00:00 2001 From: "aa@chromium.org" Date: Wed, 1 Sep 2010 02:14:03 +0000 Subject: Fix the small badge text on windows. I don't have the time right now to figure out how to put in a good test, so I hope it doesn't break again. BUG=50129 TEST=Visual inspection Review URL: http://codereview.chromium.org/3287004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58113 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/common/extensions/extension_action.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chrome') diff --git a/chrome/common/extensions/extension_action.cc b/chrome/common/extensions/extension_action.cc index 27ba4ec..6186d79 100644 --- a/chrome/common/extensions/extension_action.cc +++ b/chrome/common/extensions/extension_action.cc @@ -37,11 +37,11 @@ const int kBottomMargin = 5; const int kPadding = 2; const int kTopTextPadding = 0; #else -const float kTextSize = 7.5; +const float kTextSize = 10; const int kBottomMargin = 5; const int kPadding = 2; // The padding between the top of the badge and the top of the text. -const int kTopTextPadding = 1; +const int kTopTextPadding = -1; #endif const int kBadgeHeight = 11; -- cgit v1.1