diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2015-11-16 07:32:46 -0500 |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2015-11-16 07:32:46 -0500 |
commit | 5922d739d4d0d9ae29a325a752992aff2f2da612 (patch) | |
tree | b93154288437f210add994e2aaad8bc5ad40a86a /Lib/idlelib/EditorWindow.py | |
parent | 42347100bff765db08661f9f623d85e2873b067a (diff) | |
parent | d36d817a8464426953da8558d3c397f0378e046e (diff) | |
download | cpython-git-5922d739d4d0d9ae29a325a752992aff2f2da612.tar.gz |
Merge with 3.4
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>") |