Quote:
Originally Posted by kovidgoyal
You're using a pre-built messagebox, in that case raise wont work. WHat you have to do is construct your own messagebox and call raise_ on it
Code:
d = QMessageBox(QMessageBox.Warning, 'title', 'message')
d.raise_()
d.exec_()
|
This runs OK, but my message box is still hidden behind the Adding... box.
I've attached a very simple plug-in that demonstrates the problem. I have no notion of how to get any further with this.