]> git.saurik.com Git - wxWidgets.git/commitdiff
shell.autoCompleteAutoHide added with default of True.
authorPatrick K. O'Brien <pobrien@orbtech.com>
Mon, 9 Feb 2004 02:53:13 +0000 (02:53 +0000)
committerPatrick K. O'Brien <pobrien@orbtech.com>
Mon, 9 Feb 2004 02:53:13 +0000 (02:53 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25676 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/wx/py/CHANGES.txt
wxPython/wx/py/editwindow.py
wxPython/wx/py/shell.py

index eed5b74fee4c82fe462c773df762d96a552eb326..27a65f22fdd4b30266cb874cb5aa9787f1a7780f 100644 (file)
@@ -9,6 +9,8 @@ Removed docs tabs from crust interface:
 
 Fixed Calltip tab refresh problem on Windows.
 
+shell.autoCompleteAutoHide added with default of True.
+
 
 0.9.3 (9/25/2003 to 1/24/2004)
 ------------------------------
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
index 5c343c6b77d76ff2673c9a67dae8c670916ba378..722b59649a1a157b20c78cf22bae9168d0494491 100644 (file)
@@ -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,