From 884078359b6fbe4606c70d6bb7b57170a63377a2 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Fri, 29 Oct 2021 19:03:40 +0200 Subject: [PATCH] set strict mode --- openpype/tools/context_dialog/window.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openpype/tools/context_dialog/window.py b/openpype/tools/context_dialog/window.py index 197a87caba..b2056e0b5f 100644 --- a/openpype/tools/context_dialog/window.py +++ b/openpype/tools/context_dialog/window.py @@ -345,6 +345,7 @@ def main( ): app = QtWidgets.QApplication([]) window = ContextDialog() + window.set_strict(strict) window.set_context(project_name, asset_name) window.show() app.exec_()