X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d351525a9b21807a04810c96d24c657a857be830..70a4ef826ff45fbf06106ae3b6c3a1263eabfe73:/wxPython/wx/py/editwindow.py diff --git a/wxPython/wx/py/editwindow.py b/wxPython/wx/py/editwindow.py index 1d44f1d863..dddd906f82 100644 --- a/wxPython/wx/py/editwindow.py +++ b/wxPython/wx/py/editwindow.py @@ -15,11 +15,6 @@ import time import dispatcher from version import VERSION -try: - True -except NameError: - True = 1==1 - False = 1==0 if wx.Platform == '__WXMSW__': FACES = { 'times' : 'Times New Roman', @@ -87,7 +82,7 @@ class EditWindow(stc.StyledTextCtrl): self.autoCompleteIncludeDouble = True self.autoCompleteCaseInsensitive = True self.AutoCompSetIgnoreCase(self.autoCompleteCaseInsensitive) - self.autoCompleteAutoHide = True + self.autoCompleteAutoHide = False self.AutoCompSetAutoHide(self.autoCompleteAutoHide) self.AutoCompStops(' .,;:([)]}\'"\\<>%^&+-=*/|`') # Do we want to automatically pop up command argument help?