I am working with python and pyqt. I have a dialog that I want to temporarily hide. After calling
dlg.hide()
I try calling
dlg.show()
but nothing happens. It is never re-displayed.
I am new to pyqt so any help is greatly appreciated.
Thanks in advance.
You are looking for the
exec_method that makes the dialog modal, see how this works: