mirror of https://github.com/python/cpython
gh-111092: Make turtledemo run without default root enabled (#111093)
Add missing 'root' argument to PanedWindow call. Other root children already have it.
This commit is contained in:
parent
8d234cd315
commit
b802882fb2
|
@ -161,7 +161,7 @@ class DemoWindow(object):
|
|||
label='Help', underline=0)
|
||||
root['menu'] = self.mBar
|
||||
|
||||
pane = PanedWindow(orient=HORIZONTAL, sashwidth=5,
|
||||
pane = PanedWindow(root, orient=HORIZONTAL, sashwidth=5,
|
||||
sashrelief=SOLID, bg='#ddd')
|
||||
pane.add(self.makeTextFrame(pane))
|
||||
pane.add(self.makeGraphFrame(pane))
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Make turtledemo run without default root enabled.
|
Loading…
Reference in New Issue