From 8fd3f55dbb7466f17f5fde2b9c020bca5738d150 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Wed, 18 Oct 2017 14:10:10 +0200 Subject: PythonEditor: Ensure project file is listed first Change-Id: I43377a97d4ef82e8ed3824a766ba86db086f4dc7 Reviewed-by: hjk --- src/plugins/pythoneditor/pythoneditorplugin.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/plugins/pythoneditor') diff --git a/src/plugins/pythoneditor/pythoneditorplugin.cpp b/src/plugins/pythoneditor/pythoneditorplugin.cpp index 6564f6ffc4..9290a2cd98 100644 --- a/src/plugins/pythoneditor/pythoneditorplugin.cpp +++ b/src/plugins/pythoneditor/pythoneditorplugin.cpp @@ -478,8 +478,9 @@ void PythonProject::parseProject() class PythonFileNode : public FileNode { public: - PythonFileNode(const Utils::FileName &filePath, const QString &nodeDisplayName) - : FileNode(filePath, FileType::Source, false) + PythonFileNode(const Utils::FileName &filePath, const QString &nodeDisplayName, + FileType fileType = FileType::Source) + : FileNode(filePath, fileType, false) , m_displayName(nodeDisplayName) {} @@ -497,7 +498,8 @@ void PythonProject::refresh() auto newRoot = new PythonProjectNode(this); for (const QString &f : m_files) { const QString displayName = baseDir.relativeFilePath(f); - newRoot->addNestedNode(new PythonFileNode(FileName::fromString(f), displayName)); + FileType fileType = f.endsWith(".pyqtc") ? FileType::Project : FileType::Source; + newRoot->addNestedNode(new PythonFileNode(FileName::fromString(f), displayName, fileType)); } setRootProjectNode(newRoot); -- cgit v1.2.1