Fix for issue 3335 (Status panel password field not shown in french locale)
| | |
| | | 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); |
| | | |
| | | |