Improve new window pane sizes. Issue #2344

This commit is contained in:
Maurice Parker
2020-08-20 20:00:31 -05:00
parent b20004e8b5
commit 2b35eacc30
2 changed files with 16 additions and 16 deletions

View File

@@ -67,7 +67,7 @@ class MainWindowController : NSWindowController, NSUserInterfaceValidations {
if let window = window {
let point = NSPoint(x: 128, y: 64)
let size = NSSize(width: 1000, height: 700)
let size = NSSize(width: 1345, height: 900)
let minSize = NSSize(width: 600, height: 600)
window.setPointAndSizeAdjustingForScreen(point: point, size: size, minimumSize: minSize)
}