I have a bug that only occurs when I am NOT debugging.<br><br>I am very new to pyQT, so please forgive if this is something obvious. <br><br>The following code is called from another QDialog class upon a particular button click.<br>
<br>            newServiceForm = QDialog()<br>            newServiceUI = Ui_Dialog()<br>            newServiceUI.setupUi(newServiceForm)<br>            newServiceUI.installScriptButton.clicked.connect(self.installScriptButton_clicked)<br>
            newServiceForm.show()<br><br>If I set a breakpoint anywhere in this method the newServiceForm displays with no issue; however if I allow the application to execute naturally, the form never displays.<br><br>I am assuming there is some race condition here internal to QT that is being created likely due to my misuse.<br>
<br>Any advice would be great as this has been puzzling me for some time now, and as I get ready to release my application to testing it is becoming increasingly important to not use my "work around" so to speak.<br>
<br>Regards,<br>John V. Busch<br>