From cd06540e4b102fda0c758d4133a7b97d85213500 Mon Sep 17 00:00:00 2001 From: Kirill Kalishev Date: Wed, 21 Oct 2009 17:30:46 +0400 Subject: [PATCH] project view -- always shows plus is true by default --- .../src/com/intellij/ide/util/treeView/AbstractTreeNode.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/platform-api/src/com/intellij/ide/util/treeView/AbstractTreeNode.java b/platform/platform-api/src/com/intellij/ide/util/treeView/AbstractTreeNode.java index a154adbc79..7c01f74ac3 100644 --- a/platform/platform-api/src/com/intellij/ide/util/treeView/AbstractTreeNode.java +++ b/platform/platform-api/src/com/intellij/ide/util/treeView/AbstractTreeNode.java @@ -90,7 +90,7 @@ public abstract class AbstractTreeNode extends PresentableNodeDescriptor impl public boolean isAlwaysShowPlus() { - return false; + return true; } public boolean isAlwaysExpand() { -- 2.11.4.GIT