ui: add example for python environment to source group settings ui and changed name in project settings file (issue #696)

This commit is contained in:
mlangkabel
2019-05-28 17:47:27 +02:00
parent d2b41f7598
commit b90444b943
5 changed files with 34 additions and 22 deletions
@@ -47,9 +47,9 @@ std::vector<std::shared_ptr<IndexerCommand>> SourceGroupPythonEmpty::getIndexerC
args += L" --source-file-path=%{SOURCE_FILE_PATH}";
args += L" --database-file-path=%{DATABASE_FILE_PATH}";
if (!m_settings->getEnvironmentDirectoryPath().empty())
if (!m_settings->getEnvironmentPath().empty())
{
args += L" --environment-path=" + m_settings->getEnvironmentDirectoryPathExpandedAndAbsolute().wstr();
args += L" --environment-path=" + m_settings->getEnvironmentPathExpandedAndAbsolute().wstr();
}
if (ApplicationSettings::getInstance()->getVerboseIndexerLoggingEnabled())