mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-01-19 15:09:11 +00:00
Remove nonsense Mac menus (#285)
This commit is contained in:
parent
8f27690aca
commit
50b4806275
@ -27,7 +27,7 @@ import Foundation
|
||||
import UIKit
|
||||
import PassepartoutLibrary
|
||||
|
||||
class AppDelegate: NSObject, UIApplicationDelegate, ObservableObject {
|
||||
class AppDelegate: UIResponder, UIApplicationDelegate, ObservableObject {
|
||||
private let mac = MacBundle.shared
|
||||
|
||||
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil) -> Bool {
|
||||
@ -46,4 +46,14 @@ class AppDelegate: NSObject, UIApplicationDelegate, ObservableObject {
|
||||
sceneConfiguration.delegateClass = SceneDelegate.self
|
||||
return sceneConfiguration
|
||||
}
|
||||
|
||||
override func buildMenu(with builder: UIMenuBuilder) {
|
||||
super.buildMenu(with: builder)
|
||||
builder.remove(menu: .file)
|
||||
builder.remove(menu: .services)
|
||||
builder.remove(menu: .format)
|
||||
builder.remove(menu: .toolbar)
|
||||
builder.remove(menu: .view)
|
||||
builder.remove(menu: .help)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user