From: Vadim Zeitlin <vadim@wxwidgets.org> Date: Tue, 29 Feb 2000 15:00:21 +0000 (+0000) Subject: wxListCtrl uses SetWindowChange() in its OnChar X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c5145d41777d5c47a0d82120d1d99a6cb66e91c7 wxListCtrl uses SetWindowChange() in its OnChar git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6351 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/listctrl.cpp b/src/generic/listctrl.cpp index c5a1e76d04..5ddfbf0f03 100644 --- a/src/generic/listctrl.cpp +++ b/src/generic/listctrl.cpp @@ -1979,6 +1979,7 @@ void wxListMainWindow::OnChar( wxKeyEvent &event ) if (event.KeyCode() == WXK_TAB) { wxNavigationKeyEvent nevent; + nevent.SetWindowChange( event.ControlDown() ); nevent.SetDirection( !event.ShiftDown() ); nevent.SetEventObject( GetParent()->GetParent() ); nevent.SetCurrentFocus( m_parent );