36 lines
1.4 KiB
Diff
36 lines
1.4 KiB
Diff
|
From 4bc7ce49d92e7a0647b7e2f42c649d4cfee10d74 Mon Sep 17 00:00:00 2001
|
||
|
From: Alexander Volkov <a.volkov@rusbitech.ru>
|
||
|
Date: Thu, 7 May 2015 17:10:12 +0300
|
||
|
Subject: [PATCH 1/1] xcb: Fix getting the window types from the property of
|
||
|
QWindow
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
wm_window_type_property_id is a dynamic property, so we should
|
||
|
check that it is set by using QObject::dynamicPropertyNames()
|
||
|
instead of QMetaObject::indexOfProperty().
|
||
|
|
||
|
Change-Id: Ic7f3408a0d028f349538e0538c40c4b58360f7df
|
||
|
Reviewed-by: Jørgen Lind <jorgen.lind@theqtcompany.com>
|
||
|
---
|
||
|
src/plugins/platforms/xcb/qxcbwindow.cpp | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/src/plugins/platforms/xcb/qxcbwindow.cpp b/src/plugins/platforms/xcb/qxcbwindow.cpp
|
||
|
index a6011aa654824c46f1e10c04dbc1b8d8c9c6658a..42a86ae8104641d24b0ce4dbd7418ad17bf8bd38 100644
|
||
|
--- a/src/plugins/platforms/xcb/qxcbwindow.cpp
|
||
|
+++ b/src/plugins/platforms/xcb/qxcbwindow.cpp
|
||
|
@@ -762,7 +762,7 @@ void QXcbWindow::show()
|
||
|
updateNetWmStateBeforeMap();
|
||
|
}
|
||
|
|
||
|
- if (window()->metaObject()->indexOfProperty(wm_window_type_property_id) >= 0) {
|
||
|
+ if (window()->dynamicPropertyNames().contains(wm_window_type_property_id)) {
|
||
|
QXcbWindowFunctions::WmWindowTypes wmWindowTypes(window()->property(wm_window_type_property_id).value<int>());
|
||
|
setWmWindowType(wmWindowTypes);
|
||
|
}
|
||
|
--
|
||
|
2.4.2
|
||
|
|