X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/28ff70c21f80741ca1a5a5be0be450279a8c778c..c69532f71c551617ab276bf83bbd7973b66cd54f:/wxPython/demo/ComboBox.py

diff --git a/wxPython/demo/ComboBox.py b/wxPython/demo/ComboBox.py
index 76f9f23ba1..e1335dbe3d 100644
--- a/wxPython/demo/ComboBox.py
+++ b/wxPython/demo/ComboBox.py
@@ -60,11 +60,13 @@ class TestComboBox(wx.Panel):
     # Capture events every time a user hits a key in the text entry field.
     def EvtText(self, evt):
         self.log.WriteText('EvtText: %s\n' % evt.GetString())
+        evt.Skip()
 
     # Capture events when the user types something into the control then
     # hits ENTER.
     def EvtTextEnter(self, evt):
         self.log.WriteText('EvtTextEnter: %s' % evt.GetString())
+        evt.Skip()
 
 #---------------------------------------------------------------------------