diff options
Diffstat (limited to 'app/resource_bundle.cc')
-rw-r--r-- | app/resource_bundle.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/resource_bundle.cc b/app/resource_bundle.cc index 4acac71..e04f79e 100644 --- a/app/resource_bundle.cc +++ b/app/resource_bundle.cc @@ -170,7 +170,11 @@ void ResourceBundle::LoadFontsIfNecessary() { *small_font_ = base_font_->DeriveFont(-2); medium_font_.reset(new gfx::Font()); +#if defined(OS_LINUX) && defined(TOOLKIT_VIEWS) + *medium_font_ = base_font_->DeriveFont(2); +#else *medium_font_ = base_font_->DeriveFont(3); +#endif medium_bold_font_.reset(new gfx::Font()); *medium_bold_font_ = |