Skip to content

Commit

Permalink
bpo-17535: Increase line number horizontal padding by 2 pixels (pytho…
Browse files Browse the repository at this point in the history
  • Loading branch information
taleinat authored and terryjreedy committed Jul 27, 2019
1 parent 91e4957 commit 46ebd4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/idlelib/sidebar.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def __init__(self, editwin):

_padx, pady = get_widget_padding(self.text)
self.sidebar_text = tk.Text(self.parent, width=1, wrap=tk.NONE,
padx=0, pady=pady,
padx=2, pady=pady,
borderwidth=0, highlightthickness=0)
self.sidebar_text.config(state=tk.DISABLED)
self.text['yscrollcommand'] = self.redirect_yscroll_event
Expand Down

0 comments on commit 46ebd4a

Please sign in to comment.