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 super.setFrameAutosaveName("Preferences Window")
17 super.contentView = NSHostingView(rootView: PreferencesScreen())
18 super.makeKeyAndOrderFront(nil)