From dda924d663f3e4e6b092abc2ba04850ed977edac Mon Sep 17 00:00:00 2001 From: DanicaSTFC <138598662+DanicaSTFC@users.noreply.github.com> Date: Fri, 29 Sep 2023 11:47:37 +0100 Subject: [PATCH] Update examples/dialog_example_2.py Co-authored-by: Laura Murgatroyd <60604372+lauramurgatroyd@users.noreply.github.com> --- examples/dialog_example_2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/dialog_example_2.py b/examples/dialog_example_2.py index 2e07f7e..4dec5e0 100644 --- a/examples/dialog_example_2.py +++ b/examples/dialog_example_2.py @@ -26,7 +26,7 @@ def openFormDialog(self): dialog = FormDialog(parent=self, title='Example') dialog.Ok.clicked.connect(lambda: self.accepted()) - ### Example on how to add elements to the + # Example on how to add elements to the FormDialog # add input 1 as QLineEdit qlabel = QtWidgets.QLabel(dialog.groupBox) qlabel.setText("Input 1: ")