From fce161de8adea84b608dd8b19afb72c5493a7969 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Sat, 10 Jun 2006 14:31:08 +0000 Subject: [PATCH] numpad keys didn't trigger an update (reason for bug ID1503745) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39662 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/mac/carbon/textctrl.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mac/carbon/textctrl.cpp b/src/mac/carbon/textctrl.cpp index 7b1142a3ce..93c0feae07 100644 --- a/src/mac/carbon/textctrl.cpp +++ b/src/mac/carbon/textctrl.cpp @@ -1018,6 +1018,7 @@ void wxTextCtrl::OnChar(wxKeyEvent& event) } if ( ( key >= 0x20 && key < WXK_START ) || + ( key >= WXK_NUMPAD0 && key <= WXK_DIVIDE ) || key == WXK_RETURN || key == WXK_DELETE || key == WXK_BACK) -- 2.45.2