This repository has been archived on 2026-06-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Rustdesk/flutter/macos/Runner/AppDelegate.swift
T
SoLongAndThanksForAllThePizza d756551791 fix: macos compilation
2022-06-02 16:13:34 +08:00

11 lines
255 B
Swift

import Cocoa
import FlutterMacOS
@NSApplicationMain
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
dummy_method_to_enforce_bundling()
return true
}
}