-
Notifications
You must be signed in to change notification settings - Fork 25
Open
Description
src/Editor.py line 141 should be changed from:
self.menu_bar = Menu(root)
to
self.menu_bar = Menu(self.root)
The former doesn't work unless you define a global root variable. But you already have root stored as a member variable within the object, so the latter solves the problem.
Also line 297:
root.resizable(width = FALSE, height = FALSE)
Should read:
root.resizable( width=None, height=None );
(Thanks for creating this and posting it on GitHub. I find it useful.)
Stefan
Metadata
Metadata
Assignees
Labels
No labels