Skip to content
Merged
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 @@ -62,6 +62,7 @@
import org.eclipse.ui.dialogs.ListSelectionDialog;
import org.eclipse.ui.part.ViewPart;
import org.eclipse.ui.progress.WorkbenchJob;
import org.eclipse.ui.views.WorkbenchViewerSetup;

/**
* ExecutablesView displays a list of executable files either in the workspace
Expand Down Expand Up @@ -260,8 +261,10 @@ public void createPartControl(Composite parent) {

// Create the two sub viewers.
executablesViewer = new ExecutablesViewer(this, sashForm, SWT.FULL_SELECTION | SWT.BORDER | SWT.MULTI);
WorkbenchViewerSetup.setupViewer(executablesViewer);
focusedViewer = executablesViewer;
sourceFilesViewer = new SourceFilesViewer(this, sashForm, SWT.BORDER | SWT.MULTI);
WorkbenchViewerSetup.setupViewer(sourceFilesViewer);

executablesViewer.getTree().addFocusListener(new FocusListener() {

Expand Down
Loading