This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Annoying white bar in IDLE (line 457 in sidebar.py)
Type: behavior Stage:
Components: IDLE Versions: Python 3.10
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: terry.reedy Nosy List: antudic, terry.reedy
Priority: normal Keywords:

Created on 2022-04-06 16:20 by antudic, last changed 2022-04-11 14:59 by admin.

Messages (1)
msg416883 - (view) Author: antudic (antudic) * Date: 2022-04-06 16:20
I noticed there was a white bar to the left in my IDLE when I upgraded to 3.10, it stuck out like a soar thumb since I have a custom dark theme. This was not an issue with earlier versions. After scouring through the code I found the perpetrator to be a "padx=2" in sidebar.py on line 457. Changing this value from "2" to "0" fixes this issue.

Changing this line of code solves this issue and leaves the color choices up to the user, as intended.
History
Date User Action Args
2022-04-11 14:59:58adminsetgithub: 91398
2022-04-06 16:20:04antudiccreate