feat(app): send close event when mac app should quit

This commit is contained in:
fallenoak 2023-01-02 15:26:08 -06:00 committed by GitHub
parent a50d945be0
commit d90000d0f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,6 @@
#include "app/mac/MainApp.h"
#include "event/Event.hpp"
#include "event/Input.hpp"
#include "event/Scheduler.hpp"
#include "os/Compat.hpp"
@ -29,8 +30,7 @@
}
- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender {
// TODO
// OsQueuePut(5, 0, 0, 0, 0);
OsQueuePut(OS_INPUT_CLOSE, 0, 0, 0, 0);
return NSTerminateCancel;
}