Skip to content

Commit 14510ec

Browse files
committed
Fix MainWindow parenting
1 parent c79c41f commit 14510ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/classes/app.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ def __init__(self, *args, mode=None):
242242

243243
# Create main window
244244
from windows.main_window import MainWindow
245-
self.window = MainWindow(mode)
245+
self.window = MainWindow(self, mode=mode)
246246

247247
# Reset undo/redo history
248248
self.updates.reset()

0 commit comments

Comments
 (0)