1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 21:08:12 +00:00

HackStudio: Close locator on exit

This commit is contained in:
Marcus Nilsson 2021-06-02 22:01:16 +02:00 committed by Linus Groh
parent 3ad7a1e944
commit 8d3539a1c4

View file

@ -77,6 +77,7 @@ int main(int argc, char** argv)
s_window->set_menubar(menubar);
s_window->on_close_request = [&]() -> GUI::Window::CloseRequestDecision {
s_hack_studio_widget->locator().close();
if (s_hack_studio_widget->warn_unsaved_changes("There are unsaved changes, do you want to save before exiting?") == HackStudioWidget::ContinueDecision::Yes)
return GUI::Window::CloseRequestDecision::Close;
return GUI::Window::CloseRequestDecision::StayOpen;