From 3de75e476b4bebb169e2562ca811c1573a50aae3 Mon Sep 17 00:00:00 2001 From: Davide Date: Wed, 16 Oct 2024 08:56:58 +0200 Subject: [PATCH] Prevent iPad dismiss when tapping outside (#737) The user may tap outside accidentally while editing a profile, thus losing all the edits. Avoid that. Fixes #734 --- .../Library/Sources/AppUI/Views/App/AppModalCoordinator.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Passepartout/Library/Sources/AppUI/Views/App/AppModalCoordinator.swift b/Passepartout/Library/Sources/AppUI/Views/App/AppModalCoordinator.swift index af45ff22..27e8da34 100644 --- a/Passepartout/Library/Sources/AppUI/Views/App/AppModalCoordinator.swift +++ b/Passepartout/Library/Sources/AppUI/Views/App/AppModalCoordinator.swift @@ -55,7 +55,7 @@ struct AppModalCoordinator: View { contentView .toolbar(content: toolbarContent) } - .themeModal(item: $modalRoute, isRoot: true, content: modalDestination) + .themeModal(item: $modalRoute, isRoot: true, isInteractive: false, content: modalDestination) } }