]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/wx/py/editwindow.py
Use "wxCheckListBox" instead of the deprecated "wxCheckList"
[wxWidgets.git] / wxPython / wx / py / editwindow.py
index cc62b12488a1476038c293a13426afab59308d87..1d44f1d8633035f8c0d78f01515ea66789b6253d 100644 (file)
@@ -87,7 +87,8 @@ class EditWindow(stc.StyledTextCtrl):
         self.autoCompleteIncludeDouble = True
         self.autoCompleteCaseInsensitive = True
         self.AutoCompSetIgnoreCase(self.autoCompleteCaseInsensitive)
-        self.AutoCompSetAutoHide(False)
+        self.autoCompleteAutoHide = True
+        self.AutoCompSetAutoHide(self.autoCompleteAutoHide)
         self.AutoCompStops(' .,;:([)]}\'"\\<>%^&+-=*/|`')
         # Do we want to automatically pop up command argument help?
         self.autoCallTip = True