Skip to content

Commit ae14eeb

Browse files
miss-islingtonBA-24terryjreedy
authored
[3.13] gh-91398: Remove the border around the IDLE Shell sidebar (GH-32363) (#157576)
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. (cherry picked from commit 82952e3) Co-authored-by: BA-24 <65275759+BA-24@users.noreply.github.com> Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
1 parent c8db60d commit ae14eeb

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)