6 class PreferencesWindow: NSWindow {
10 contentRect: NSRect(x: 0, y: 0, width: 600, height: 600),
11 styleMask: [.titled, .closable, .resizable, .fullSizeContentView],
15 self.isReleasedWhenClosed = false
16 self.setFrameAutosaveName("Preferences Window")
17 self.contentView = NSHostingView(rootView: PreferencesScreen())
18 self.makeKeyAndOrderFront(nil)
19 self.orderFrontRegardless()