From b52d15b9b4f079fba92eda11abbaaf386dee5456 Mon Sep 17 00:00:00 2001 From: Karar Al-Remahy Date: Thu, 13 Aug 2020 14:53:36 +0200 Subject: [PATCH] fix: Crash on MS Edge browser ext connection (#1852) --- src/widgets/AttachedWindow.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/widgets/AttachedWindow.cpp b/src/widgets/AttachedWindow.cpp index b97abb789..5f23c18ed 100644 --- a/src/widgets/AttachedWindow.cpp +++ b/src/widgets/AttachedWindow.cpp @@ -187,7 +187,9 @@ void AttachedWindow::attachToHwnd(void *_attachedPtr) if (!qfilename.endsWith("chrome.exe") && !qfilename.endsWith("firefox.exe") && !qfilename.endsWith("vivaldi.exe") && - !qfilename.endsWith("opera.exe")) + !qfilename.endsWith("opera.exe") && + !qfilename.endsWith("msedge.exe")) + { qDebug() << "NM Illegal caller" << qfilename; this->timer_.stop();