diff options
author | sschmitz@chromium.org <sschmitz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-16 08:01:30 +0000 |
---|---|---|
committer | sschmitz@chromium.org <sschmitz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-16 08:01:30 +0000 |
commit | 528dfe7d46ab9491e943d085a45fa87c05642560 (patch) | |
tree | fa421f89df74ccd87a9664d8af102928646cd7fa | |
parent | ed6e37b78a34c6444aeb6c6078b84c155c4e42b3 (diff) | |
download | chromium_src-528dfe7d46ab9491e943d085a45fa87c05642560.zip chromium_src-528dfe7d46ab9491e943d085a45fa87c05642560.tar.gz chromium_src-528dfe7d46ab9491e943d085a45fa87c05642560.tar.bz2 |
Changing SmallFont size from 10px to 11px.
SmallFont is currently only used in one place. Verified with a designer (sgabriel@) that UI looks better with 11px. There are many places in Chrome/Os where we use an 11px font size (derived from out BaseFont "minus 1px"). These UIs will now be able to use the standard font "SmallFont" with this CL.
Please see before and after screenshots in the crbug:
http://code.google.com/p/chromium/issues/detail?id=165983
Please also see crbug.com/137349 which is the bigger issue, which is partially solved by this CL.
BUG=165983,137349
TEST=manual
Review URL: https://chromiumcodereview.appspot.com/11573013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@173378 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | ui/base/resource/resource_bundle.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/base/resource/resource_bundle.cc b/ui/base/resource/resource_bundle.cc index 4bfd4dc..3b41ea5 100644 --- a/ui/base/resource/resource_bundle.cc +++ b/ui/base/resource/resource_bundle.cc @@ -43,7 +43,7 @@ namespace ui { namespace { // Font sizes relative to base font. -const int kSmallFontSizeDelta = -2; +const int kSmallFontSizeDelta = -1; const int kMediumFontSizeDelta = 3; const int kLargeFontSizeDelta = 8; |