qDialog move in front of all Windows window
Solved
General and Desktop
-
Hi Guys!
(Windows 10, QT5 c++)
I have an app which hide from tray and hide the whole MainWindow. Just appear in the tray menu. When appear a message (QDialog) it's not always show the top.
So, i am doing something when the message appear:
I see in the tray, but not pop up to the most top level, because it is under this window:
So how can i achive that this message is always pop up to the most top? Any advice?
Thanks! -
Hi
Did you try with
setWindowFlags(Qt::WindowStaysOnTopHint);
on the dialog ?