mirror of
https://github.com/AppFlowy-IO/AppFlowy
synced 2026-05-23 17:18:31 +00:00
fix: cannot open popovers (#3410)
This commit is contained in:
parent
3426e5b53e
commit
1e001640aa
1 changed files with 2 additions and 2 deletions
|
|
@ -202,9 +202,9 @@ class PopoverState extends State<Popover> {
|
|||
showOverlay();
|
||||
}
|
||||
},
|
||||
child: GestureDetector(
|
||||
child: Listener(
|
||||
child: widget.child,
|
||||
onTap: () {
|
||||
onPointerDown: (_) {
|
||||
if (widget.triggerActions & PopoverTriggerFlags.click != 0) {
|
||||
showOverlay();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue