Merge branch 'stable-2.14' into stable-2.15

* stable-2.14:
  Fix partially hidden plugin configuration in the UI
  Upgrade PostgreSQL JDBC driver

Change-Id: If39e7b17462979c21eb00085b81a2c4b5953652b
This commit is contained in:
David Pursehouse
2018-08-08 21:40:49 +01:00
2 changed files with 5 additions and 2 deletions

View File

@@ -502,6 +502,9 @@ public class ProjectInfoScreen extends ProjectScreen {
textBox.setValue(param.value());
addWidget(g, textBox, param);
}
if (textBox.getValue().length() > textBox.getVisibleLength()) {
textBox.setVisibleLength(textBox.getValue().length());
}
saveEnabler.listenTo(textBox);
return textBox;
}