Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    setCanDragResize - window content is resized to a small size

    Hi,

    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();
    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

    #2
    added screenshot
    Attached Files

    Comment


      #3
      also in SNAPSHOT_v8.3d_2012-08-22/Pro Deployment (built 2012-08-22)

      Comment


        #4
        We've made a fix for the "shrinking window content" issue. It should be in the next daily SC 8.3d/SGWT 3.1d builds.

        Comment


          #5
          Thanks, verified OK with SNAPSHOT_v8.3d_2012-08-31/Pro Deployment (built 2012-08-31).

          Comment

          Working...
          X