Merge pull request #3084 from aws-lumberyard-dev/cgalvan/FixEMFXModalToastNotifications

Prevent EMFX notifications from being modal, which was blocking input while visible.
monroegm-disable-blank-issue-2
Chris Galvan 4 years ago committed by GitHub
commit 589a05062b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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);

Loading…
Cancel
Save