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:
@@ -843,8 +843,8 @@ maven_jar(
|
|||||||
|
|
||||||
maven_jar(
|
maven_jar(
|
||||||
name = "postgresql",
|
name = "postgresql",
|
||||||
artifact = "org.postgresql:postgresql:9.4.1211",
|
artifact = "org.postgresql:postgresql:42.2.4",
|
||||||
sha1 = "721e3017fab68db9f0b08537ec91b8d757973ca8",
|
sha1 = "dff98730c28a4b3a3263f0cf4abb9a3392f815a7",
|
||||||
)
|
)
|
||||||
|
|
||||||
maven_jar(
|
maven_jar(
|
||||||
|
@@ -502,6 +502,9 @@ public class ProjectInfoScreen extends ProjectScreen {
|
|||||||
textBox.setValue(param.value());
|
textBox.setValue(param.value());
|
||||||
addWidget(g, textBox, param);
|
addWidget(g, textBox, param);
|
||||||
}
|
}
|
||||||
|
if (textBox.getValue().length() > textBox.getVisibleLength()) {
|
||||||
|
textBox.setVisibleLength(textBox.getValue().length());
|
||||||
|
}
|
||||||
saveEnabler.listenTo(textBox);
|
saveEnabler.listenTo(textBox);
|
||||||
return textBox;
|
return textBox;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user