ComboBox. Fix #742

This commit is contained in:
Ross Ferguson
2020-07-06 13:05:19 +01:00
parent d464525d61
commit 3800a233b3

View File

@@ -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;