Commit 4c09e0ce authored by afakhry's avatar afakhry Committed by Commit bot

Uber tray unresponsive with Multiprofile enabled

In ExistingUserController::PerformLogin(), There was a missing call to
ExistingUserController::PerformLoginFinishedActions(), which should
re-enables clicking on the status tray after it has been disabled in
ExistingUserController::PerformPreLoginActions().

BUG=427047
TEST=manual

Review URL: https://codereview.chromium.org/682103002

Cr-Commit-Position: refs/heads/master@{#301975}
parent 3a3284ec
...@@ -1118,6 +1118,10 @@ void LoginDisplayHostImpl::ResetLoginWindowAndView() { ...@@ -1118,6 +1118,10 @@ void LoginDisplayHostImpl::ResetLoginWindowAndView() {
return; return;
login_window_->Close(); login_window_->Close();
login_window_ = NULL; login_window_ = NULL;
if (!login_view_)
return;
login_view_->SetUIEnabled(true);
login_view_ = NULL; login_view_ = NULL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment