Merge "Fix partially hidden plugin configuration in the UI" into stable-2.14

This commit is contained in:
Edwin Kempin
2018-08-08 07:17:22 +00:00
committed by Gerrit Code Review

View File

@@ -474,6 +474,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;
}