Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

以下の画面でバックグラウンドに遷移したあとに復帰するとボタンが押せない #289

Closed
shibukazu opened this issue May 24, 2023 · 2 comments · Fixed by #290
Assignees

Comments

@shibukazu
Copy link
Contributor

原因予測
ボタンを一度押した段階でなんらかのフラグが切り替わってしまっている

@shibukazu shibukazu self-assigned this May 24, 2023
@shibukazu shibukazu added this to the Public release milestone May 24, 2023
@shibukazu
Copy link
Contributor Author

上記現象は以下の変更後に生じている

var body: some Scene {
        WindowGroup {
            StartView()
                .onChange(of: scenePhase) { phase in
                    if phase == .background {
                        if numRecognitionTasks > 0 {
                            sendBackgroundAlertNotification()
                        }
                    }
                }
        }
    }

background遷移時に何らかの処理が行われることでPartialSheetが閉じてしまうことが原因であると考えられる。

@shibukazu
Copy link
Contributor Author

shibukazu commented May 24, 2023

以下のissueで報告されている
AndreaMiotto/PartialSheet#162
PartialSheetがしばらく更新されていないことから、以下のコミットの内容を手動で取り込むべきかもしれない
vfn/PartialSheet@27774a2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant