mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-28 16:58:01 +01:00
ComboBox. Fix #742
This commit is contained in:
@@ -254,6 +254,12 @@ namespace Terminal.Gui {
|
||||
return false; // allow tab-out to next control
|
||||
}
|
||||
|
||||
if(e.Key == Key.BackTab) {
|
||||
base.ProcessKey (e);
|
||||
this.FocusPrev ();
|
||||
return false; // allow tab-out to prev control
|
||||
}
|
||||
|
||||
if (e.Key == Key.Enter && listview.HasFocus) {
|
||||
Selected ();
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user