Changed default shell.autoCompleteAutoHide to False.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26210 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
616d1b3cb0
commit
f65958ccce
@ -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.
|
||||
|
@ -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?
|
||||
|
Loading…
Reference in New Issue
Block a user