* WIP Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com> * Fixes to ModalWindowDismisser Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com> * Redisables Import test as fails on Jenkins Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com> * Redisables Import test and Edit Platform as fails on Jenkins Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com> * Replace skip in TestSuite_Main.py Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
e1cb40fa33
commit
d346d45848
@@ -45,7 +45,8 @@ bool ModalWindowDismisser::eventFilter(QObject* object, QEvent* event)
|
||||
{
|
||||
if (dialog->isModal())
|
||||
{
|
||||
if (event->type() == QEvent::Show)
|
||||
QEvent::Type test = event->type();
|
||||
if (test == QEvent::Show || test == QEvent::WindowActivate)
|
||||
{
|
||||
auto it = AZStd::find(m_windows.begin(), m_windows.end(), dialog);
|
||||
if (it == m_windows.end())
|
||||
|
||||
Reference in New Issue
Block a user