diff options
author | hjk <hjk@qt.io> | 2019-02-28 17:32:00 +0100 |
---|---|---|
committer | hjk <hjk@qt.io> | 2019-03-01 08:57:05 +0000 |
commit | e3a7aa1ad24c78ea220112d207f452425e316a4d (patch) | |
tree | 29085a58ccffeecf8333ca21f2c0d70f363801c3 /src/plugins/pythoneditor/pythoneditorplugin.cpp | |
parent | 28fd0bbbb972989d6d803116dd28bb1f3c708596 (diff) | |
download | qt-creator-e3a7aa1ad24c78ea220112d207f452425e316a4d.tar.gz |
ProjectExplorer: Flip default for ProjectNode::showInSimpleTree
Change-Id: Ibd4f91ad55b2be93d20dfc4f583de95274e981ca
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/pythoneditor/pythoneditorplugin.cpp')
-rw-r--r-- | src/plugins/pythoneditor/pythoneditorplugin.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/plugins/pythoneditor/pythoneditorplugin.cpp b/src/plugins/pythoneditor/pythoneditorplugin.cpp index 4acb367622..9de4989a93 100644 --- a/src/plugins/pythoneditor/pythoneditorplugin.cpp +++ b/src/plugins/pythoneditor/pythoneditorplugin.cpp @@ -115,7 +115,6 @@ class PythonProjectNode : public ProjectNode public: PythonProjectNode(PythonProject *project); - bool showInSimpleTree() const override; bool supportsAction(ProjectAction action, const Node *node) const override; bool addFiles(const QStringList &filePaths, QStringList *) override; bool removeFiles(const QStringList &filePaths, QStringList *) override; @@ -611,11 +610,6 @@ QHash<QString, QStringList> sortFilesIntoPaths(const QString &base, const QSet<Q return filesInPath; } -bool PythonProjectNode::showInSimpleTree() const -{ - return true; -} - bool PythonProjectNode::supportsAction(ProjectAction action, const Node *node) const { if (node->asFileNode()) { |