Commit 46ebd4a6 authored by Tal Einat's avatar Tal Einat Committed by Terry Jan Reedy

bpo-17535: Increase line number horizontal padding by 2 pixels (GH-14959)

parent 91e49575
......@@ -51,7 +51,7 @@ class BaseSideBar:
_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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment