From 5133d545bb5465037709e7fad8b8ad3f1cc8e852 Mon Sep 17 00:00:00 2001 From: Alexander Lohnau Date: Tue, 20 Oct 2020 19:13:44 +0200 Subject: [PATCH] Fix tile expansion in ShellRunner BUG: 427824 FIXED-IN: 5.20.2 --- runners/shell/shellrunner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runners/shell/shellrunner.cpp b/runners/shell/shellrunner.cpp index 54c565be4..14c04c6a2 100644 --- a/runners/shell/shellrunner.cpp +++ b/runners/shell/shellrunner.cpp @@ -53,7 +53,7 @@ ShellRunner::~ShellRunner() void ShellRunner::match(Plasma::RunnerContext &context) { - bool isShellCommand = context.type() == Plasma::RunnerContext::ShellCommand; + bool isShellCommand = context.type() == Plasma::RunnerContext::ShellCommand || context.type() == Plasma::RunnerContext::Executable; QStringList envs; QString command; // If it is not a shell command we check if we use ENV variables, FEATURE: 409107