Index: chrome/browser/chromeos/login/user_controller.cc |
diff --git a/chrome/browser/chromeos/login/user_controller.cc b/chrome/browser/chromeos/login/user_controller.cc |
index fe63dc521c4ecf2934cc6aa753aef3102673cf15..504ca8479f6d42a9b0fd28408036132e6420a842 100644 |
--- a/chrome/browser/chromeos/login/user_controller.cc |
+++ b/chrome/browser/chromeos/login/user_controller.cc |
@@ -47,7 +47,7 @@ const int kUserNameGap = 4; |
// Approximate height of controls window, this constant is used in new user |
// case to make border window size close to existing users. |
-const int kControlsHeight = 26; |
+const int kControlsHeight = 28; |
// Widget that notifies window manager about clicking on itself. |
// Doesn't send anything if user is selected. |
@@ -365,10 +365,11 @@ WidgetGtk* UserController::CreateControlsWindow( |
if (is_new_user_) |
*height += kUserImageSize + kUserNameGap; |
+ int width = kUserImageSize; |
WidgetGtk* window = new WidgetGtk(WidgetGtk::TYPE_WINDOW); |
ConfigureLoginWindow(window, |
index, |
- gfx::Rect(kUserImageSize, *height), |
+ gfx::Rect(width, *height), |
WM_IPC_WINDOW_LOGIN_CONTROLS, |
control_view); |
return window; |