[turbine,studio] Fix confirm app close pop up to work with Ctrl-Q
All checks were successful
Build / build (push) Successful in 2m1s

This commit is contained in:
2025-05-06 23:23:24 -05:00
parent 136f422401
commit cd43fb7f38
4 changed files with 8 additions and 5 deletions

View File

@@ -588,7 +588,7 @@ ox::Error StudioUI::makeCopyDlg(ox::StringViewCR path) noexcept {
ox::Error StudioUI::handleCloseAppResponse(ig::PopupResponse const response) noexcept {
if (response == ig::PopupResponse::OK && m_activeEditor) {
turbine::requestShutdown(m_tctx);
turbine::requestShutdown(m_tctx, true);
}
return {};
}