From 1916f42690c935931d5007f20b70bd003d6bd8b7 Mon Sep 17 00:00:00 2001 From: David Schulz Date: Thu, 8 Jun 2023 12:38:28 +0200 Subject: [PATCH] Python: allow remote browsing for python interpreter Change-Id: I4d8c92d4fa63b90b95bea454198d33839485868e Reviewed-by: Reviewed-by: hjk --- src/plugins/python/pythonsettings.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/python/pythonsettings.cpp b/src/plugins/python/pythonsettings.cpp index 0fe6576170f..daa4f591c03 100644 --- a/src/plugins/python/pythonsettings.cpp +++ b/src/plugins/python/pythonsettings.cpp @@ -90,6 +90,7 @@ public: , m_executable(new PathChooser()) { m_executable->setExpectedKind(PathChooser::ExistingCommand); + m_executable->setAllowPathFromDevice(true); connect(m_name, &QLineEdit::textChanged, this, &InterpreterDetailsWidget::changed); connect(m_executable, &PathChooser::textChanged, this, &InterpreterDetailsWidget::changed);