Skip to content

Commit

Permalink
Do not group the custom-filtered selection
Browse files Browse the repository at this point in the history
  • Loading branch information
gzsombor committed Apr 30, 2023
1 parent d3bf58a commit bf6de43
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ private List<Object> getStackFrames(IJavaThread thread) throws DebugException {
if (frame instanceof JDIStackFrame) {
var javaFrame = (JDIStackFrame) frame;
var category = stackFrameProvider.getCategory(javaFrame);
if (category == null || category == Category.TEST || category == Category.PRODUCTION) {
if (category == null || category == Category.TEST || category == Category.PRODUCTION || category == Category.CUSTOM_FILTERED) {
result.add(javaFrame);
lastGroupping = null;
} else {
Expand Down

0 comments on commit bf6de43

Please sign in to comment.