We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec9faf1 commit 1494fe2Copy full SHA for 1494fe2
src/gesturehandler/gesturehandler.android.ts
@@ -558,6 +558,10 @@ export class Manager extends ManagerBase {
558
if (parent instanceof GestureRootView) {
559
return parent.registry;
560
}
561
+ // we need to break if it is a modal page or we will get the wrong registry
562
+ if (parent['_dialogFragment']) {
563
+ break;
564
+ }
565
parent = parent.parent;
566
567
0 commit comments