]> git.saurik.com Git - wxWidgets.git/commitdiff
Changed default shell.autoCompleteAutoHide to False.
authorPatrick K. O'Brien <pobrien@orbtech.com>
Mon, 15 Mar 2004 02:30:07 +0000 (02:30 +0000)
committerPatrick K. O'Brien <pobrien@orbtech.com>
Mon, 15 Mar 2004 02:30:07 +0000 (02:30 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26210 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

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

index 303ecc67877f617cdaf75b838c9f7777068ce120..d92d1ae041ac1c5de3ee72479308f7df963c5273 100644 (file)
@@ -9,7 +9,7 @@ Removed docs tabs from crust interface:
 
 Fixed Calltip tab refresh problem on Windows.
 
-shell.autoCompleteAutoHide added with default of True.
+shell.autoCompleteAutoHide added with default of False.
 
 Changed default namespace of Shell to __main__.__dict__, instead of an
 empty dictionary.
index e95ba172187bc9afb5e8b4d003f584ff0022ce77..dddd906f82271ccd629de14c5b0503e154b697c9 100644 (file)
@@ -82,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?