New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpo-33987: IDLE: Use ttk Frame on help.py #11433
Conversation
@@ -212,7 +212,9 @@ class HelpFrame(Frame): | |||
def __init__(self, parent, filename): | |||
Frame.__init__(self, parent) | |||
self.text = text = HelpText(self, filename) | |||
self['background'] = text['background'] | |||
self.style = Style(parent) | |||
self['style'] = 'helpframe.TFrame' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Without this, the gray background for the menubutton extended down the entire length of the window. I prefer the current box just around [TOC V].
Thanks @csabella for the PR, and @terryjreedy for merging it |
GH-22899 is a backport of this pull request to the 3.9 branch. |
GH-22900 is a backport of this pull request to the 3.8 branch. |
Thanks for reviewing and merging this! :-) |
https://bugs.python.org/issue33987