Merge with 3.4

This commit is contained in:
Terry Jan Reedy 2015-09-28 04:53:01 -04:00
commit bcb0c134cb
1 changed files with 3 additions and 1 deletions

View File

@ -755,8 +755,10 @@ class EditorWindow(object):
insertbackground=cursor_color,
selectforeground=select_colors['foreground'],
selectbackground=select_colors['background'],
inactiveselectbackground=select_colors['background'],
)
if TkVersion >= 8.5:
self.text.config(
inactiveselectbackground=select_colors['background'])
IDENTCHARS = string.ascii_letters + string.digits + "_"