diff -r fc1ab84c242f -r 529f1c17c93e ProjectDjangoTagsMenu/MultiLineInputDialog.py --- a/ProjectDjangoTagsMenu/MultiLineInputDialog.py Sat Dec 23 16:54:25 2023 +0100 +++ b/ProjectDjangoTagsMenu/MultiLineInputDialog.py Mon Oct 28 16:51:09 2024 +0100 @@ -57,7 +57,7 @@ @return multi line text and a flag indicating the acceptance state @rtype tuple of (str, bool) """ - dlg = MultiLineInputDialog(label, default, parent) + dlg = MultiLineInputDialog(label, default, parent=parent) dlg.setWindowTitle(title) if dlg.exec() == QDialog.DialogCode.Accepted: return dlg.getData(), True