Fix login window width to prevent time / date being cut off

This commit is contained in:
Alexander von Gluck IV
2011-11-14 14:24:31 +00:00
parent ff49e36ea9
commit f09b888e61
+1 -1
View File
@@ -58,7 +58,7 @@ LoginApp::ReadyToRun()
"When you are finished just quit the application (Alt-Q)."),
B_TRANSLATE("OK")))->Go(NULL);
} else {
BRect frame(0, 0, 400, 150);
BRect frame(0, 0, 450, 150);
frame.OffsetBySelf(screen.Frame().Width()/2 - frame.Width()/2,
screen.Frame().Height()/2 - frame.Height()/2);
fLoginWindow = new LoginWindow(frame);