| Index: ash/shell/shell_main.cc
|
| diff --git a/ash/shell/shell_main.cc b/ash/shell/shell_main.cc
|
| index ea52da8493b2b6fe633df058a3fe7c80cd6171b1..93029909995e58ede9cc7028bd47dde6a0071fea 100644
|
| --- a/ash/shell/shell_main.cc
|
| +++ b/ash/shell/shell_main.cc
|
| @@ -157,7 +157,9 @@ class ShellDelegateImpl : public ash::ShellDelegate {
|
|
|
| virtual void LauncherItemClicked(
|
| const ash::LauncherItem& item) OVERRIDE {
|
| - ash::ActivateWindow(watcher_->GetWindowByID(item.id));
|
| + aura::Window* window = watcher_->GetWindowByID(item.id);
|
| + window->Show();
|
| + ash::ActivateWindow(window);
|
| }
|
|
|
| virtual int GetBrowserShortcutResourceId() OVERRIDE {
|
|
|