Skip to content

Commit 82952e3

Browse files
BA-24terryjreedy
andauthored
gh-91398: Remove the border around the IDLE Shell sidebar (GH-32363)
It was drawn in the window background color and stood out with dark themes. Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
1 parent 5601e1e commit 82952e3

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

Lib/idlelib/sidebar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ def mkcmd(eventname):
453453
return "break"
454454

455455
def grid(self):
456-
self.canvas.grid(row=1, column=0, sticky=tk.NSEW, padx=2, pady=0)
456+
self.canvas.grid(row=1, column=0, sticky=tk.NSEW)
457457

458458
def change_callback(self):
459459
if self.is_shown:
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Remove the border around the IDLE Shell sidebar, which was drawn in the
2+
window background color and stood out with dark themes.

0 commit comments

Comments
 (0)