diff options
Diffstat (limited to 'ash/system/tray/system_tray.cc')
-rw-r--r-- | ash/system/tray/system_tray.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ash/system/tray/system_tray.cc b/ash/system/tray/system_tray.cc index 736e6e6..3fd3dbd 100644 --- a/ash/system/tray/system_tray.cc +++ b/ash/system/tray/system_tray.cc @@ -350,7 +350,7 @@ void SystemTray::RemoveBubble(SystemTrayBubble* bubble) { // No need to show the launcher if the mouse isn't over the status area // anymore. aura::RootWindow* root = GetWidget()->GetNativeView()->GetRootWindow(); - should_show_launcher_ = GetWidget()->GetWindowScreenBounds().Contains( + should_show_launcher_ = GetWidget()->GetWindowBoundsInScreen().Contains( root->last_mouse_location()); if (!should_show_launcher_) Shell::GetInstance()->shelf()->UpdateAutoHideState(); |