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
src/Editor.py line 141 should be changed from:
to
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:
Should read:
(Thanks for creating this and posting it on GitHub. I find it useful.)
Stefan