SEBSERV-110 fix

This commit is contained in:
anhefti 2020-04-15 09:26:19 +02:00
parent be7889a4cf
commit ab50fc774b

View file

@ -53,6 +53,10 @@ public final class SingleSelection extends Combo implements Selection {
@Override
public void select(final String key) {
if (this.isEditable) {
super.setText(key);
return;
}
final int selectionIndex = this.keyMapping.indexOf(key);
if (selectionIndex < 0) {
return;