SEBSERV-110 fix
This commit is contained in:
parent
be7889a4cf
commit
ab50fc774b
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue