Skip to content

Commit ca5d13d

Browse files
authored
Increase height of settings window and content view (#210)
1 parent 6e4e87c commit ca5d13d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

BrightIntosh/UI/SettingsWindow.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -328,13 +328,13 @@ final class SettingsWindowController: NSWindowController, NSWindowDelegate {
328328
init() {
329329

330330
let settingsWindow = NSWindow(
331-
contentRect: NSRect(x: 0, y: 0, width: 650, height: 580),
331+
contentRect: NSRect(x: 0, y: 0, width: 650, height: 590),
332332
styleMask: [.titled, .closable, .unifiedTitleAndToolbar],
333333
backing: .buffered,
334334
defer: false
335335
)
336336

337-
let contentView = SettingsView().frame(width: 650, height: 580)
337+
let contentView = SettingsView().frame(width: 650, height: 590)
338338

339339
settingsWindow.contentView = NSHostingView(rootView: contentView)
340340
settingsWindow.center()

0 commit comments

Comments
 (0)