applicationShouldOpenUntitledFile

This commit is contained in:
rustdesk
2023-01-20 01:25:15 +08:00
parent 3e63df1d59
commit aac12c2b21
6 changed files with 47 additions and 26 deletions

View File

@@ -7,4 +7,9 @@ class AppDelegate: FlutterAppDelegate {
dummy_method_to_enforce_bundling()
return true
}
override func applicationShouldOpenUntitledFile(_ sender: NSApplication) -> Bool {
handle_applicationShouldOpenUntitledFile();
return true
}
}