From f3c1786a897493f280e62a39b8e04d2c83d15567 Mon Sep 17 00:00:00 2001 From: David Edmundson Date: Fri, 25 Jan 2019 10:33:24 +0000 Subject: [PATCH] [wayland] Send VirtualDesktop::done after editing a property Summary: The protocol is double buffered, after changing the name done should be sent so that clients update. Test Plan: Changed a VD name on wayland Pager tooltip updated Reviewers: #kwin, zzag Reviewed By: #kwin, zzag Subscribers: zzag, kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D18513 --- virtualdesktops.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/virtualdesktops.cpp b/virtualdesktops.cpp index 086af5cead..0dfb66a282 100644 --- a/virtualdesktops.cpp +++ b/virtualdesktops.cpp @@ -67,6 +67,7 @@ void VirtualDesktopManager::setVirtualDesktopManagement(KWayland::Server::Plasma connect(desktop, &VirtualDesktop::nameChanged, pvd, [desktop, pvd] { pvd->setName(desktop->name()); + pvd->sendDone(); } ); connect(pvd, &PlasmaVirtualDesktopInterface::activateRequested, this,