mirror of
https://github.com/python/cpython.git
synced 2025-07-09 20:35:26 +00:00
bpo-33987: IDLE: Use ttk Frame on doc window and statusbar (GH-11433)
This commit is contained in:
parent
e76b8fc815
commit
facb522d44
2 changed files with 9 additions and 5 deletions
|
@ -28,8 +28,8 @@ from html.parser import HTMLParser
|
|||
from os.path import abspath, dirname, isfile, join
|
||||
from platform import python_version
|
||||
|
||||
from tkinter import Toplevel, Frame, Text, Menu
|
||||
from tkinter.ttk import Menubutton, Scrollbar
|
||||
from tkinter import Toplevel, Text, Menu
|
||||
from tkinter.ttk import Frame, Menubutton, Scrollbar, Style
|
||||
from tkinter import font as tkfont
|
||||
|
||||
from idlelib.config import idleConf
|
||||
|
@ -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'
|
||||
self.style.configure('helpframe.TFrame', background=text['background'])
|
||||
self.toc = toc = self.toc_menu(text)
|
||||
self.scroll = scroll = Scrollbar(self, command=text.yview)
|
||||
text['yscrollcommand'] = scroll.set
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue