From 74d95e8240edddfc8c27763512f2737b9f0c1818 Mon Sep 17 00:00:00 2001 From: ComixHe Date: Fri, 17 Jan 2025 17:46:40 +0800 Subject: [PATCH] fix: correct the ordering of application args Signed-off-by: ComixHe --- src/dbus/applicationservice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dbus/applicationservice.cpp b/src/dbus/applicationservice.cpp index db09c25..a821834 100644 --- a/src/dbus/applicationservice.cpp +++ b/src/dbus/applicationservice.cpp @@ -296,7 +296,7 @@ ApplicationService::Launch(const QString &action, const QStringList &fields, con // don't change this sequence cmds.push_back("deepin-terminal"); cmds.push_back("--keep-open"); // keep terminal open, prevent exit immediately - cmds.push_front("-e"); // run all original execution commands in deepin-terminal + cmds.push_back("-e"); // run all original execution commands in deepin-terminal } auto &jobManager = parent()->jobManager();