From 25c2c2b3d5745b633fdac8ea83619c7adaf39dd7 Mon Sep 17 00:00:00 2001 From: Alexander Semke Date: Sun, 17 Nov 2019 15:58:32 +0100 Subject: [PATCH] In case the specified backend executable is not an executable, show the path of the file in the warning and not the name of the backend. --- src/lib/backend.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/backend.cpp b/src/lib/backend.cpp index 46ba6958..d85696d5 100644 --- a/src/lib/backend.cpp +++ b/src/lib/backend.cpp @@ -198,7 +198,7 @@ bool Backend::checkExecutable(const QString& name, const QString& path, QString* if (reason) *reason = i18n("The specified file '%1' doesn't point to an executable. " "Please provide the correct path in the application settings and try again.", - name); + path); return false; } -- GitLab