Thanks for the info. It didnt work. This is the only thing holding the app back from being released.
I did try adjusting the NSRect in the AppDelegate:
// Create the window and set the content view.
window = NSWindow(
contentRect: NSRect(x: 0, y: 0, width: 230, height: 400),
styleMask: [.titled, .closable, .miniaturizable, .resizable, .fullSizeContentView],
backing: .buffered, defer: false)
window.center()
window.setFrameAutosaveName("Main Window")
window.contentView = NSHostingView(rootView: contentView)
window.makeKeyAndOrderFront(nil)
}
The Width and Height, but that doesnt seem to do anything. Also, where does one get information for the X and Y coordinates? Can't find information about that either.