From 4e6cc020c383e71464865d097c143f20e77f3966 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Wed, 30 Aug 2006 12:47:29 +0000 Subject: [PATCH] Don't skip event if default processing has inserted a tab git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40929 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 4c4096ecba..0fbd547e59 100644 --- a/src/mac/carbon/textctrl.cpp +++ b/src/mac/carbon/textctrl.cpp @@ -999,6 +999,7 @@ void wxTextCtrl::OnChar(wxKeyEvent& event) // This is necessary (don't know why); // otherwise the tab will not be inserted. WriteText(wxT("\t")); + eat_key = true; } break; -- 2.45.2