Prevent EMFX notifications from being modal, which was blocking input while visible.

Signed-off-by: Chris Galvan <chgalvan@amazon.com>
This commit is contained in:
Chris Galvan
2021-08-12 12:10:13 -05:00
parent 6d5d042e40
commit 4ceff99ba1
@@ -28,7 +28,7 @@ namespace EMStudio
setWindowTitle("Notification");
// window, no border, no focus, stays on top
setWindowFlags(Qt::Popup | Qt::FramelessWindowHint | Qt::WindowDoesNotAcceptFocus);
setWindowFlags(Qt::Window | Qt::FramelessWindowHint | Qt::WindowDoesNotAcceptFocus | Qt::WindowStaysOnTopHint);
// enable the translucent background
setAttribute(Qt::WA_TranslucentBackground);