Skip to content

Commit d1488a1

Browse files
vaindthisames
andauthored
fix mask overlay flutter session replay (#2576)
* fix: change visitChildElements to debugVisitOnstageChildren * fix: change visitChildElements to debugVisitOnstageChildren * chore:changelog --------- Co-authored-by: thiago <[email protected]>
1 parent 9ed26e6 commit d1488a1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
### Fixes
2121

2222
- Replay: fix masking for frames captured during UI changes ([#2553](https://github.com/getsentry/sentry-dart/pull/2553))
23+
- Replay: fix widget masks overlap when navigating between screens ([#2486](https://github.com/getsentry/sentry-dart/pull/2486), [#2576](https://github.com/getsentry/sentry-dart/pull/2576))
2324

2425
### Dependencies
2526

flutter/lib/src/screenshot/widget_filter.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class WidgetFilter {
8080
break;
8181
case SentryMaskingDecision.continueProcessing:
8282
// If this element should not be obscured, visit and check its children.
83-
element.visitChildElements(_visitList.add);
83+
element.debugVisitOnstageChildren(_visitList.add);
8484
break;
8585
}
8686
}

0 commit comments

Comments
 (0)