summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms
diff options
context:
space:
mode:
authorAlexander Volkov <a.volkov@rusbitech.ru>2014-10-28 16:10:57 +0400
committerShawn Rutledge <shawn.rutledge@digia.com>2014-10-29 08:29:45 +0100
commitad1ec8b57dde6f5cbb7a4f66272794a067dc3917 (patch)
treed8a4271f0d070ea376fa92d84cc501f8f29a54de /src/plugins/platforms
parent320360131559df76ba1f635b665659f57e147665 (diff)
xcb: Fix setting the alert state for a window
Send a _NET_WM_STATE client message to the root window instead of changing the window property. Task-number: QTBUG-41310 Change-Id: I864af0158ec55796bb3cbc123469709b2be54ec8 Reviewed-by: Martin Gräßlin <mgraesslin@kde.org> Reviewed-by: Shawn Rutledge <shawn.rutledge@digia.com>
Diffstat (limited to 'src/plugins/platforms')
-rw-r--r--src/plugins/platforms/xcb/qxcbwindow.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/plugins/platforms/xcb/qxcbwindow.cpp b/src/plugins/platforms/xcb/qxcbwindow.cpp
index 0c2e9d047c..5d3206b097 100644
--- a/src/plugins/platforms/xcb/qxcbwindow.cpp
+++ b/src/plugins/platforms/xcb/qxcbwindow.cpp
@@ -2380,13 +2380,10 @@ void QXcbWindow::setAlertState(bool enabled)
{
if (m_alertState == enabled)
return;
- const NetWmStates oldState = netWmStates();
+
m_alertState = enabled;
- if (enabled) {
- setNetWmStates(oldState | NetWmStateDemandsAttention);
- } else {
- setNetWmStates(oldState & ~NetWmStateDemandsAttention);
- }
+
+ changeNetWmState(enabled, atom(QXcbAtom::_NET_WM_STATE_DEMANDS_ATTENTION));
}
bool QXcbWindow::needsSync() const