Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2021-09-17 14:43:27 +0000
committerAndrey Loskutov2021-09-17 15:44:13 +0000
commita1906a17f5cfde6a98521ba10ca092f854703c33 (patch)
tree7265de892ffd37c0b9e17adceddc3f93f693ef1b
parent36d6a8f94c0c15be6c46bc8618eae5adddc60c08 (diff)
downloadeclipse.platform.debug-a1906a17f5cfde6a98521ba10ca092f854703c33.tar.gz
eclipse.platform.debug-a1906a17f5cfde6a98521ba10ca092f854703c33.tar.xz
eclipse.platform.debug-a1906a17f5cfde6a98521ba10ca092f854703c33.zip
Change-Id: I1a7a6c09760ed77b4b93b2c87acd659ef3d5bbb5 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com> Reviewed-on: https://git.eclipse.org/r/c/platform/eclipse.platform.debug/+/185560 Tested-by: Platform Bot <platform-bot@eclipse.org> Reviewed-by: Andrey Loskutov <loskutov@gmx.de>
-rw-r--r--org.eclipse.debug.ui.launchview/src/org/eclipse/debug/ui/launchview/internal/view/LaunchViewImpl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui.launchview/src/org/eclipse/debug/ui/launchview/internal/view/LaunchViewImpl.java b/org.eclipse.debug.ui.launchview/src/org/eclipse/debug/ui/launchview/internal/view/LaunchViewImpl.java
index ba4b19762..6cc629b72 100644
--- a/org.eclipse.debug.ui.launchview/src/org/eclipse/debug/ui/launchview/internal/view/LaunchViewImpl.java
+++ b/org.eclipse.debug.ui.launchview/src/org/eclipse/debug/ui/launchview/internal/view/LaunchViewImpl.java
@@ -110,7 +110,7 @@ public class LaunchViewImpl implements Supplier<Set<ILaunchObject>> {
String txt = ((LaunchObjectModel) element).getLabel().toString();
return wordMatches(txt);
}
- }, true);
+ }, true, true);
tree.getViewer().setContentProvider(new LaunchViewContentProvider());
tree.getViewer().setLabelProvider(new DelegatingStyledCellLabelProvider(new LaunchViewLabelProvider()));
tree.getViewer().getTree().setLayout(new GridLayout());

Back to the top