From 63ca73c6d85fff272b2bc207196614829cc86b1d Mon Sep 17 00:00:00 2001 From: Maurizio D'Addona Date: Wed, 10 Apr 2024 08:14:13 +0200 Subject: [PATCH] Fix missing qt_api in openProject --- src/redmost/gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redmost/gui.py b/src/redmost/gui.py index 0e06e9f..acbb9c0 100644 --- a/src/redmost/gui.py +++ b/src/redmost/gui.py @@ -3086,7 +3086,7 @@ def openProject(self, file_name: str) -> None: 'row': int(line_info['row']), 'data': float(line_info['data']), 'text': str(line_info['text']), - 'checked': QtCore.Qt.CheckState( + 'checked': qt_api.QtCore.Qt.CheckState( line_info['checked'] ) })