Hello,
I have a QMainWindow and sometimes there's a QDialog displayed. I know that if QDialog doesn't have a parent it creates a taskbar entry. Now I have the problem that I don't want QDialog to have a taskbar entry (Windows) because that QDialog should always be visible (with the onTopHint in particular) even if the QMainWindow is minimized.

So the basic problem is that:
- if QDialog has a QMainWindow as a parent - it doesn't have a taskbar entry but it disappears when the QMainWindow is minimized
- but if QDialog has no parent - it doesn't disappear when the QMainWindow is minimized but it has a taskbar entry


I don't want the QDialog to have a taskbar entry and I don't want it getting disappeared when the QMainWindow is minimized. So, am I missing something?