From 8530ffb7e3ac9942b25aefdedc39c1939cb8919a Mon Sep 17 00:00:00 2001 From: Matthew Marlow <44077383+mfmarlow@users.noreply.github.com> Date: Sat, 15 Aug 2020 01:14:59 -0700 Subject: [PATCH] added brave browser to supported NM list (#1862) * added brave browser to supported NM list * updated CHANGELOG.md --- CHANGELOG.md | 1 + src/widgets/AttachedWindow.cpp | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98f2221c..59bebf4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Unversioned +- Minor: Added support for Brave browser. (#1862) - Major: We now support image thumbnails coming from the link resolver. This feature is off by default and can be enabled in the settings with the "Show link thumbnail" setting. This feature also requires the "Show link info when hovering" setting to be enabled (#1664) - Major: Added image upload functionality to i.nuuls.com with an ability to change upload destination. This works by dragging and dropping an image into a split, or pasting an image into the text edit field. (#1332, #1741) - Minor: Add a switcher widget, similar to Discord. It can be opened by pressing Ctrl+K. (#1588) diff --git a/src/widgets/AttachedWindow.cpp b/src/widgets/AttachedWindow.cpp index 5f23c18e..115c2437 100644 --- a/src/widgets/AttachedWindow.cpp +++ b/src/widgets/AttachedWindow.cpp @@ -188,7 +188,8 @@ void AttachedWindow::attachToHwnd(void *_attachedPtr) !qfilename.endsWith("firefox.exe") && !qfilename.endsWith("vivaldi.exe") && !qfilename.endsWith("opera.exe") && - !qfilename.endsWith("msedge.exe")) + !qfilename.endsWith("msedge.exe") && + !qfilename.endsWith("brave.exe")) { qDebug() << "NM Illegal caller" << qfilename;