From a5425c2f891a68608976faad548dbb5c86251810 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Tue, 31 Aug 2021 16:53:05 +0200 Subject: [PATCH] fixed parenting --- openpype/tools/new_publisher/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openpype/tools/new_publisher/app.py b/openpype/tools/new_publisher/app.py index 2176d6facb..bc1bd7cfbd 100644 --- a/openpype/tools/new_publisher/app.py +++ b/openpype/tools/new_publisher/app.py @@ -8,7 +8,7 @@ class _WindowCache: def show(parent=None): window = _WindowCache.window if window is None: - window = PublisherWindow() + window = PublisherWindow(parent) _WindowCache.window = window window.show()