ProjectDjangoTagsMenu/MultiLineInputDialog.py

branch
eric7
changeset 72
529f1c17c93e
parent 70
ce1c2effa0e0
child 74
a25b858e18a7
--- 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

eric ide

mercurial