fix: fix multitasking no response sometime

fix multitasking no reponse after click sometime

log:
This commit is contained in:
tsic404 2023-03-30 11:41:40 +08:00 committed by Tsic
parent fe75a3af39
commit 89cd24ad72

View File

@ -72,7 +72,13 @@ void MultitaskingPlugin::init(PluginProxyInterface *proxyInter)
const QString MultitaskingPlugin::itemCommand(const QString &itemKey)
{
if (itemKey == PLUGIN_KEY)
return "dbus-send --session --dest=com.deepin.wm --print-reply /com/deepin/wm com.deepin.wm.PerformAction int32:1";
DDBusSender()
.service("com.deepin.wm")
.interface("com.deepin.wm")
.path("/com/deepin/wm")
.method(QString("PerformAction"))
.arg(1)
.call();
return "";
}