diff --git a/Terminal.Gui/Views/ComboBox.cs b/Terminal.Gui/Views/ComboBox.cs index 10190ff5e..c00f8c235 100644 --- a/Terminal.Gui/Views/ComboBox.cs +++ b/Terminal.Gui/Views/ComboBox.cs @@ -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;