Skip to content

Commit e51e40e

Browse files
committed
Do not group the custom-filtered selection
1 parent bd8fa61 commit e51e40e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/monitors/JavaThreadContentProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ private List<Object> getStackFrames(IJavaThread thread) throws DebugException {
149149
if (frame instanceof JDIStackFrame) {
150150
var javaFrame = (JDIStackFrame) frame;
151151
var category = stackFrameProvider.getCategory(javaFrame);
152-
if (category == null || category == Category.TEST || category == Category.PRODUCTION) {
152+
if (category == null || category == Category.TEST || category == Category.PRODUCTION || category == Category.CUSTOM_FILTERED) {
153153
result.add(javaFrame);
154154
lastGroupping = null;
155155
} else {

0 commit comments

Comments
 (0)