fix: correct the ordering of application args

Signed-off-by: ComixHe <heyuming@deepin.org>
This commit is contained in:
ComixHe 2025-01-17 17:46:40 +08:00 committed by Wang Zichong
parent 1c4ae3f700
commit 74d95e8240

View File

@ -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();