summaryrefslogtreecommitdiffstats
path: root/chrome/browser/status_icons/status_tray_manager.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/status_icons/status_tray_manager.cc')
-rw-r--r--chrome/browser/status_icons/status_tray_manager.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/status_icons/status_tray_manager.cc b/chrome/browser/status_icons/status_tray_manager.cc
index 26d0840..f0ef268 100644
--- a/chrome/browser/status_icons/status_tray_manager.cc
+++ b/chrome/browser/status_icons/status_tray_manager.cc
@@ -44,7 +44,10 @@ void StatusTrayManager::Init(Profile* profile) {
// Create an icon and add ourselves as a click observer on it
SkBitmap* bitmap = ResourceBundle::GetSharedInstance().GetBitmapNamed(
IDR_STATUS_TRAY_ICON);
+ SkBitmap* pressed = ResourceBundle::GetSharedInstance().GetBitmapNamed(
+ IDR_STATUS_TRAY_ICON_PRESSED);
icon->SetImage(*bitmap);
+ icon->SetPressedImage(*pressed);
icon->AddObserver(this);
}
}