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:
Terry Jan Reedy 2023-10-19 23:58:41 -04:00 committed by GitHub
parent 8d234cd315
commit b802882fb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -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))

View File

@ -0,0 +1 @@
Make turtledemo run without default root enabled.