I have a problem. Using ".show()" on "second window". It does not work
from a slot method (after clicking a button). Does this is know bug,
or I have made something wrong ?
Code looks like this:

@QtCore.Slot()
    def optionswindow(self):
        options = OptionsWindow()
        options.show()

I found out that if I raise a Exception after making .show everything
works fine.

@QtCore.Slot()
    def optionswindow(self):
        options = OptionsWindow()
        options.show()
        try:
            raise RuntimeError()
        except:
            pass

Thanks
Dominik "Socek" Długajczyk
_______________________________________________
PySide mailing list
[email protected]
http://lists.openbossa.org/listinfo/pyside

Reply via email to