The question is very simple. Is it possible to show QDialog or QMessageBox without creating a tab in the task bar for it? I tried using exec(), show(), changing value of modal, but the tab is always on.
The question is very simple. Is it possible to show QDialog or QMessageBox without
Share
You need to specify parent window for the
QMessageBox:Or simply:
Note that parent parameter can even be empty
QWidget: