Index: app/resource_bundle.cc |
diff --git a/app/resource_bundle.cc b/app/resource_bundle.cc |
index 4acac71bbd2f526909788b266e6ff08d264b32de..e04f79e51ee76a4ddbd0a6046be43d87ed6ec389 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_ = |