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
|
@Override
|
||||||
public void select(final String key) {
|
public void select(final String key) {
|
||||||
|
if (this.isEditable) {
|
||||||
|
super.setText(key);
|
||||||
|
return;
|
||||||
|
}
|
||||||
final int selectionIndex = this.keyMapping.indexOf(key);
|
final int selectionIndex = this.keyMapping.indexOf(key);
|
||||||
if (selectionIndex < 0) {
|
if (selectionIndex < 0) {
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue