X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e757654cd8f9bb5f687694f9142e75ece3586a3a..e55e94865fb13bdae40e79e56b13b29cd99ca82a:/wxPython/wx/py/shell.py diff --git a/wxPython/wx/py/shell.py b/wxPython/wx/py/shell.py index 5c343c6b77..722b59649a 100644 --- a/wxPython/wx/py/shell.py +++ b/wxPython/wx/py/shell.py @@ -151,6 +151,7 @@ Ctrl+= Default font size. 'ask', 'autoCallTip', 'autoComplete', + 'autoCompleteAutoHide', 'autoCompleteCaseInsensitive', 'autoCompleteIncludeDouble', 'autoCompleteIncludeMagic', @@ -822,6 +823,8 @@ Platform: %s""" % \ def autoCompleteShow(self, command): """Display auto-completion popup list.""" + self.AutoCompSetAutoHide(self.autoCompleteAutoHide) + self.AutoCompSetIgnoreCase(self.autoCompleteCaseInsensitive) list = self.interp.getAutoCompleteList(command, includeMagic=self.autoCompleteIncludeMagic, includeSingle=self.autoCompleteIncludeSingle,