Allow TAB navigation to work with wxTimePickerCtrl on GTK

See #19039
This commit is contained in:
Paul Cornett
2021-01-15 09:28:16 -08:00
parent 156045b73b
commit e734e4d88d

View File

@@ -248,6 +248,9 @@ private:
}
}
break;
case WXK_TAB:
event.Skip();
break;
// Do not skip the other events, just consume them to prevent the
// user from editing the text directly.