Comment 0 for bug 1010256

Revision history for this message
Michael Isaac (michael-t16qijz8x59bnuup) wrote :

This issue is no critical at all, however I'm completely new to Monkey Studio, Qt, and Python. I found this behavior to be uncharacteristic of most IDEs. When you create a new PyQt project, the auto generated main.py contains the following lines of code;

    # create widget
    w = MainWindow()
    w.setWindowTitle( 'TestProject' ) # <--- this line is the issue
    w.show()

The setWindowTitle line blocks the default functionality of Qt Designer by overriding the values defined by the Property Editor. It didn't take to figure it out, but it does seem abnormal.