diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2015-11-16 07:33:01 -0500 |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2015-11-16 07:33:01 -0500 |
commit | a8a6419d4e613b1753b2472273ef375f8b9bd3e5 (patch) | |
tree | e5a37243505aa3b4c774769b752a9a70505dd1c5 /Lib/idlelib/EditorWindow.py | |
parent | a28cdafe8385d4c5f68354c84f5f423f822e2ef9 (diff) | |
parent | 5922d739d4d0d9ae29a325a752992aff2f2da612 (diff) | |
download | cpython-git-a8a6419d4e613b1753b2472273ef375f8b9bd3e5.tar.gz |
Merge with 3.5
Diffstat (limited to 'Lib/idlelib/EditorWindow.py')
-rw-r--r-- | Lib/idlelib/EditorWindow.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index 58a01dc1a2..b5868be3fb 100644 --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -156,6 +156,7 @@ class EditorWindow(object): 'name': 'text', 'padx': 5, 'wrap': 'none', + 'highlightthickness': 0, 'width': self.width, 'height': idleConf.GetOption('main', 'EditorWindow', 'height', type='int')} @@ -380,6 +381,7 @@ class EditorWindow(object): def set_status_bar(self): self.status_bar = self.MultiStatusBar(self.top) + sep = Frame(self.top, height=1, borderwidth=1, background='grey75') if sys.platform == "darwin": # Insert some padding to avoid obscuring some of the statusbar # by the resize widget. @@ -387,6 +389,7 @@ class EditorWindow(object): self.status_bar.set_label('column', 'Col: ?', side=RIGHT) self.status_bar.set_label('line', 'Ln: ?', side=RIGHT) self.status_bar.pack(side=BOTTOM, fill=X) + sep.pack(side=BOTTOM, fill=X) self.text.bind("<<set-line-and-column>>", self.set_line_and_column) self.text.event_add("<<set-line-and-column>>", "<KeyRelease>", "<ButtonRelease>") |