Update flutter/lib/mobile/pages/remote_page.dart

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Alessandro De Blasis
2025-10-29 14:08:34 +00:00
committed by GitHub
parent c7730d5f52
commit 7c35897408

View File

@@ -1204,9 +1204,7 @@ void showOptions(
: null)),
// Show custom scale controls when custom view style is selected
Obx(() => viewStyle.value == kRemoteViewStyleCustom
? GestureDetector(
behavior: HitTestBehavior.opaque,
onTap: () {}, // Absorb tap events to prevent dialog dismiss
? AbsorbPointer(
child: MobileCustomScaleControls(ffi: gFFI),
)
: const SizedBox.shrink()),