mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
fix: the aa menu disappear after clicking the inactive indent itemg (#4390)
This commit is contained in:
parent
c41a7aaacf
commit
6739af2be1
@ -70,7 +70,7 @@ class _MentionPageBlockState extends State<MentionPageBlock> {
|
||||
if (view == null) {
|
||||
return const SizedBox.shrink();
|
||||
}
|
||||
updateSelection();
|
||||
// updateSelection();
|
||||
final iconSize = widget.textStyle?.fontSize ?? 16.0;
|
||||
return Padding(
|
||||
padding: const EdgeInsets.symmetric(horizontal: 2),
|
||||
|
@ -81,7 +81,7 @@ class MobileToolbarMenuItemWrapper extends StatelessWidget {
|
||||
|
||||
return GestureDetector(
|
||||
behavior: HitTestBehavior.opaque,
|
||||
onTap: onTap,
|
||||
onTap: enable == false ? null : onTap,
|
||||
child: Stack(
|
||||
children: [
|
||||
Container(
|
||||
|
Loading…
Reference in New Issue
Block a user