diff options
author | Thulinma <jaron@vietors.com> | 2023-02-10 18:01:47 +0100 |
---|---|---|
committer | Thulinma <jaron@vietors.com> | 2023-02-10 18:01:47 +0100 |
commit | 7ffae002a5c85725cb92cc20a3baf59af1d99275 (patch) | |
tree | 0b1ef52deb27d38d759073b859c27db8b49a1e09 /src | |
parent | Translated using Weblate (Estonian) (diff) | |
download | nheko-7ffae002a5c85725cb92cc20a3baf59af1d99275.tar.xz |
Make ImageOverlay set appropriate windowRole again
Diffstat (limited to 'src')
-rw-r--r-- | src/ui/NhekoGlobalObject.cpp | 8 | ||||
-rw-r--r-- | src/ui/NhekoGlobalObject.h | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/ui/NhekoGlobalObject.cpp b/src/ui/NhekoGlobalObject.cpp index 99921d79..dcfaecf8 100644 --- a/src/ui/NhekoGlobalObject.cpp +++ b/src/ui/NhekoGlobalObject.cpp @@ -10,6 +10,8 @@ #include <QDesktopServices> #include <QStyle> #include <QUrl> +#include <QWindow> +#include <QtPlatformHeaders/QXcbWindowFunctions> #include "Cache_p.h" #include "ChatPage.h" @@ -178,3 +180,9 @@ Nheko::createRoom(bool space, emit ChatPage::instance()->createRoom(req); } + +void +Nheko::setWindowRole(QWindow *win, QString newRole) const +{ + QXcbWindowFunctions::setWmWindowRole(win, newRole.toUtf8()); +} diff --git a/src/ui/NhekoGlobalObject.h b/src/ui/NhekoGlobalObject.h index 690761a5..5a2dda07 100644 --- a/src/ui/NhekoGlobalObject.h +++ b/src/ui/NhekoGlobalObject.h @@ -72,6 +72,7 @@ public: return new AliasEditingModel(room_id_.toStdString()); } Q_INVOKABLE void setTransientParent(QWindow *window, QWindow *parentWindow) const; + Q_INVOKABLE void setWindowRole(QWindow *win, QString newRole) const; public slots: void updateUserProfile(); |