aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-06-27 13:48:55 -0400
committerKen Moore <ken@ixsystems.com>2017-06-27 13:48:55 -0400
commitee425989c2c2519d803a416aa0030e9e488bf70b (patch)
treeb0a358bcaefdc1418c574e1472aa6b9b6ffb11a2 /src-qt5/core/libLumina
parentOops - make sure we initialize the EWMH class before using it. (diff)
downloadlumina-ee425989c2c2519d803a416aa0030e9e488bf70b.tar.gz
lumina-ee425989c2c2519d803a416aa0030e9e488bf70b.tar.bz2
lumina-ee425989c2c2519d803a416aa0030e9e488bf70b.zip
Cleanup a bit more of the root level property setting. Now things seem to be properly getting registered for the session.
Diffstat (limited to 'src-qt5/core/libLumina')
-rw-r--r--src-qt5/core/libLumina/NativeWindowSystem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/libLumina/NativeWindowSystem.cpp b/src-qt5/core/libLumina/NativeWindowSystem.cpp
index 5e119baf..13d6221c 100644
--- a/src-qt5/core/libLumina/NativeWindowSystem.cpp
+++ b/src-qt5/core/libLumina/NativeWindowSystem.cpp
@@ -441,7 +441,7 @@ void NativeWindowSystem::setRoot_supportedActions(){
obj->EWMH._NET_WM_WINDOW_TYPE_DROPDOWN_MENU, obj->EWMH._NET_WM_WINDOW_TYPE_POPUP_MENU, obj->EWMH._NET_WM_WINDOW_TYPE_TOOLTIP,
obj->EWMH._NET_WM_WINDOW_TYPE_NOTIFICATION, obj->EWMH._NET_WM_WINDOW_TYPE_COMBO, obj->EWMH._NET_WM_WINDOW_TYPE_DND,
};
- xcb_ewmh_set_supported(&obj->EWMH, QX11Info::appScreen(), 0,list);
+ xcb_ewmh_set_supported(&obj->EWMH, QX11Info::appScreen(), 19,list);
}
void NativeWindowSystem::setRoot_numberOfWorkspaces(QStringList names){
bgstack15