From 46ebd4a6a22431ce9676546d2bbe5a6dcd1cc1c1 Mon Sep 17 00:00:00 2001 From: Tal Einat Date: Sat, 27 Jul 2019 06:24:37 +0300 Subject: [PATCH] bpo-17535: Increase line number horizontal padding by 2 pixels (GH-14959) --- Lib/idlelib/sidebar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/idlelib/sidebar.py b/Lib/idlelib/sidebar.py index 8f9bf80b526055..76964a4cdfbe26 100644 --- a/Lib/idlelib/sidebar.py +++ b/Lib/idlelib/sidebar.py @@ -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