From f2e4e119293693e9ca7eece7d10986d7a627ac03 Mon Sep 17 00:00:00 2001 From: Eike Hein Date: Wed, 20 Apr 2016 01:34:59 +0900 Subject: [PATCH] Hook up virtual_desktop_changeable state. Summary: Depends on D1448. Reviewers: graesslin Subscribers: plasma-devel Projects: #plasma Differential Revision: https://phabricator.kde.org/D1449 --- abstract_client.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/abstract_client.cpp b/abstract_client.cpp index e52be5a742..87b70f87e9 100644 --- a/abstract_client.cpp +++ b/abstract_client.cpp @@ -652,6 +652,7 @@ void AbstractClient::setupWindowManagementInterface() w->setShaded(isShade()); w->setResizable(isResizable()); w->setMovable(isMovable()); + w->setVirtualDesktopChangeable(true); // FIXME Matches Client::actionSupported(), but both should be implemented. connect(this, &AbstractClient::skipTaskbarChanged, w, [w, this] { w->setSkipTaskbar(skipTaskbar());