Hi,
When I resize a Window using the mouse in the bottom-right corner, its content becomes very small, as in screenshot.
Repro:
Didn't test yet on the very latest nightly but on
SNAPSHOT_v8.3d_2012-08-08/Pro Deployment (built 2012-08-08)
FireFox 4
When I resize a Window using the mouse in the bottom-right corner, its content becomes very small, as in screenshot.
Repro:
Code:
Window w = new Window();
w.setAutoSize(true);
w.setTitle("My Window");
w.setCanDragResize(true);
DynamicForm loginForm = new DynamicForm();
loginForm.setNumCols(1);
loginForm.setCellPadding(5);
loginForm.setWidth(250);
TextItem txtUsername = new TextItem("username", "User");
PasswordItem txtPassword = new PasswordItem("password", "Password");
loginForm.setFields(txtUsername, txtPassword);
w.addItem(loginForm);
w.show();
SNAPSHOT_v8.3d_2012-08-08/Pro Deployment (built 2012-08-08)
FireFox 4
Comment