mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

jvergara
13.06.2008 af284aca4174205bfb0b208ad282c77f1ed49245
Fix for issue 3335 (Status panel password field not shown in french locale)
1 files modified
7 ■■■■■ changed files
opendj-sdk/opends/src/guitools/org/opends/guitools/statuspanel/ui/LoginDialog.java 7 ●●●●● patch | view | raw | blame | history
opendj-sdk/opends/src/guitools/org/opends/guitools/statuspanel/ui/LoginDialog.java
@@ -248,13 +248,14 @@
    tfPwd = UIFactory.makeJPasswordField(null,
        INFO_LOGIN_PWD_TOOLTIP.get(),
        UIFactory.PASSWORD_FIELD_SIZE, UIFactory.TextStyle.PASSWORD_FIELD);
    gbc.weightx = 1.0;
    p2.add(p3, gbc);
    gbc.insets = UIFactory.getEmptyInsets();
    gbc.gridwidth = GridBagConstraints.RELATIVE;
    gbc.weightx = 0.0;
    gbc.gridwidth = GridBagConstraints.REMAINDER;
    gbc.weightx = 0.2;
    p3.add(tfPwd, gbc);
    gbc.gridwidth = GridBagConstraints.REMAINDER;
    gbc.weightx = 1.0;
    gbc.weightx = 0.8;
    p3.add(Box.createHorizontalGlue(), gbc);