From ee70c24fe2f559a2a87a31fc96f11ae613d32109 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 2 Dec 2025 10:14:34 -0600 Subject: [PATCH] fix: pop-up menu position --- .../widgets/action_buttons/add_action_button.widget.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/lib/presentation/widgets/action_buttons/add_action_button.widget.dart b/mobile/lib/presentation/widgets/action_buttons/add_action_button.widget.dart index 71fedf1258..99b8120877 100644 --- a/mobile/lib/presentation/widgets/action_buttons/add_action_button.widget.dart +++ b/mobile/lib/presentation/widgets/action_buttons/add_action_button.widget.dart @@ -109,7 +109,7 @@ class AddActionButton extends ConsumerWidget { final size = renderObject.size; final position = renderObject.localToGlobal(Offset.zero); - return RelativeRect.fromLTRB(position.dx, position.dy - size.height - 200, position.dx + size.width, position.dy); + return RelativeRect.fromLTRB(position.dx, position.dy - size.height - 225, position.dx + size.width, position.dy); } void _openAlbumSelector(BuildContext context, WidgetRef ref) {