From 16bf3b8820c8e1948740c46405dfe2ef02e58517 Mon Sep 17 00:00:00 2001 From: Adam Wolf Date: Tue, 31 Dec 2024 00:51:13 -0600 Subject: [PATCH] docs: update config docs to reflect window positioning changes --- src/config/Config.zig | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/config/Config.zig b/src/config/Config.zig index 7fba7ddd9..93f107bb2 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -1109,7 +1109,7 @@ keybind: Keybinds = .{}, @"window-width": u32 = 0, /// The initial window position. This position is in pixels and is relative -/// to the top-left corner of the screen. Both values must be set to take +/// to the top-left corner of the primary monitor. Both values must be set to take /// effect. If only one value is set, it is ignored. /// /// Note that the window manager may put limits on the position or override @@ -1119,8 +1119,6 @@ keybind: Keybinds = .{}, /// /// Important note: Setting this value will only work on macOS and glfw builds /// on Linux. GTK 4.0 does not support setting the window position. -/// -/// This will default to the top-left corner of the screen if not set (0, 0). @"window-position-x": ?i16 = null, @"window-position-y": ?i16 = null,