Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automatically Expand Paths of single children: eclipse.platform#1063 #1277

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -250,12 +250,20 @@ public void treeExpanded(TreeExpansionEvent event) {


private class PackageExplorerProblemTreeViewer extends ProblemTreeViewer {
/**
* Number of levels to automatically expand when an element only has a single
* child.
*
* @see AbstractTreeViewer#setAutoExpandOnSingleChildLevels(int)
*/
private static final int AUTO_EXPAND_ON_SINGLE_CHILD_LEVELS= 10;
// fix for 64372 Projects showing up in Package Explorer twice [package explorer]
private final List<Object> fPendingRefreshes;

public PackageExplorerProblemTreeViewer(Composite parent, int style) {
super(parent, style);
fPendingRefreshes= Collections.synchronizedList(new ArrayList<>());
setAutoExpandOnSingleChildLevels(AUTO_EXPAND_ON_SINGLE_CHILD_LEVELS);
}
@Override
public void add(Object parentElement, Object... childElements) {
Expand Down