From: Pavel Sanda Date: Fri, 24 Feb 2023 18:43:56 +0000 (+0100) Subject: Fogotten case for replacing $$python. X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=b4ed627ecc5bbb40a37ae913667b7e8bb886ef4d;p=features.git Fogotten case for replacing $$python. Patch from Jose. https://www.mail-archive.com/lyx-devel@lists.lyx.org/msg219385.html --- diff --git a/src/frontends/qt/qt_helpers.cpp b/src/frontends/qt/qt_helpers.cpp index 01c5d7bde9..97f316ab6d 100644 --- a/src/frontends/qt/qt_helpers.cpp +++ b/src/frontends/qt/qt_helpers.cpp @@ -305,7 +305,8 @@ void showTarget(string const & target, string const & pdfv, string const & psv) if (!opts.empty()) opts += " "; Systemcall one; - string const command = lyxrc.citation_search_view + " " + opts + tar; + string const viewer = subst(lyxrc.citation_search_view, "$${python}", os::python()); + string const command = viewer + " " + opts + tar; int const result = one.startscript(Systemcall::Wait, command); if (result == 1) // Script failed