chore: rename window-position-{x,y} to window-initial-position-{x,y}

This commit is contained in:
Adam Wolf
2024-12-31 10:35:23 -06:00
committed by Mitchell Hashimoto
parent 16bf3b8820
commit f9250e28b5
4 changed files with 8 additions and 8 deletions

View File

@@ -370,7 +370,7 @@ class TerminalController: BaseTerminalController {
// Set our window positioning to coordinates if config value exists, otherwise
// fallback to original centering behavior
setInitialWindowPosition(window, x: config.windowPositionX, y: config.windowPositionY, windowDecorations: config.windowDecorations)
setInitialWindowPosition(window, x: config.windowInitialPositionX, y: config.windowInitialPositionY, windowDecorations: config.windowDecorations)
// Make sure our theme is set on the window so styling is correct.
if let windowTheme = config.windowTheme {