Situation: A border-less QDialog stays successfully on top of other applications.
The problem is when clicking on this always-on-top application window, the followin
I don't know about QDialog, I'm using just a QWidget for similar purpose (displaying a Windows 8 style notification).
Try setting:
dialog->setFocusPolicy(Qt::NoFocus); dialog->setAttribute(Qt::WA_ShowWithoutActivating);
maybe you'll have to set focus policy on all children.