From 38cc87fbcdda4047be72108bd769eb756963e382 Mon Sep 17 00:00:00 2001 From: Albert S Date: Mon, 5 Oct 2020 22:50:53 +0200 Subject: [PATCH] add 'terminal=true' support for .qsrun entries --- entryprovider.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/entryprovider.cpp b/entryprovider.cpp index 5387d43..1896f32 100644 --- a/entryprovider.cpp +++ b/entryprovider.cpp @@ -223,6 +223,7 @@ EntryConfig EntryProvider::readqsrunFile(const QString &path) } result.col = map["col"].toInt(); result.row = map["row"].toInt(); + result.isTerminalCommand = map["terminal"] == "true"; return result; }