diff options
Diffstat (limited to 'chrome/browser/browser_theme_provider.cc')
-rw-r--r-- | chrome/browser/browser_theme_provider.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/browser_theme_provider.cc b/chrome/browser/browser_theme_provider.cc index ac15107..b6af887 100644 --- a/chrome/browser/browser_theme_provider.cc +++ b/chrome/browser/browser_theme_provider.cc @@ -819,7 +819,7 @@ SkBitmap* BrowserThemeProvider::GenerateBitmap(int id) { std::map<int, SkBitmap*>::iterator it = image_cache_.find(base_id); if (it != image_cache_.end()) { SkBitmap* frame = it->second; - int blur_amount = (HasCustomImage(id)) ? 1 : 5; + int blur_amount = (HasCustomImage(id)) ? 1 : 2; SkBitmap blurred = skia::ImageOperations::CreateBlurredBitmap(*frame, blur_amount); SkBitmap* bg_tab = new SkBitmap(TintBitmap(blurred, TINT_BACKGROUND_TAB)); |