Skip to content

Commit 50561d4

Browse files
EcljpseB0Tpraveen-skp
authored andcommitted
Chevron: filter with '*' in front
1 parent 4681124 commit 50561d4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/internal/workbench/renderers/swt/AbstractTableInformationControl.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -403,6 +403,9 @@ private void setMatcherString(String pattern) {
403403
fSearchPattern = null;
404404
} else {
405405
SearchPattern patternMatcher = new SearchPattern();
406+
if (!pattern.startsWith("*")) { //$NON-NLS-1$
407+
pattern = "*" + pattern; //$NON-NLS-1$
408+
}
406409
patternMatcher.setPattern(pattern);
407410
fSearchPattern = patternMatcher;
408411
}

0 commit comments

Comments
 (0)