Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(197)

Unified Diff: ui/login/account_picker/user_pod_row.js

Issue 1205063002: Fix user pod not always scroll to the center after VK shows up (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/webui/chromeos/login/core_oobe_handler.cc ('k') | ui/login/display_manager.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/login/account_picker/user_pod_row.js
diff --git a/ui/login/account_picker/user_pod_row.js b/ui/login/account_picker/user_pod_row.js
index d4fd53a524e08184975591c09a676f8f5b18ab97..aa8e57523b5787d56f4095c5bd317f76d32d1c1b 100644
--- a/ui/login/account_picker/user_pod_row.js
+++ b/ui/login/account_picker/user_pod_row.js
@@ -2584,8 +2584,7 @@ cr.define('login', function() {
if (layout.columns != this.columns || layout.rows != this.rows)
this.placePods_();
- if (Oobe.getInstance().virtualKeyboardShown)
- this.scrollFocusedPodIntoView();
+ this.scrollFocusedPodIntoView();
},
/**
@@ -2783,9 +2782,7 @@ cr.define('login', function() {
chrome.send('focusPod', [podToFocus.user.username]);
this.firstShown_ = false;
this.lastFocusedPod_ = podToFocus;
-
- if (Oobe.getInstance().virtualKeyboardShown)
- this.scrollFocusedPodIntoView();
+ this.scrollFocusedPodIntoView();
}
this.insideFocusPod_ = false;
this.keyboardActivated_ = false;
« no previous file with comments | « chrome/browser/ui/webui/chromeos/login/core_oobe_handler.cc ('k') | ui/login/display_manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698