From 8b5787a21e4b89464fa1c1a8d8cea1b161cec8af Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Sun, 2 Aug 2020 20:09:53 +0000 Subject: Fix negative window position This resolves an issue where negative window positions set in the configuration file would not place the Alacritty window in the correct location. Fixes #4061. --- alacritty/src/window.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'alacritty/src') diff --git a/alacritty/src/window.rs b/alacritty/src/window.rs index 172d5acc..bfe7360a 100644 --- a/alacritty/src/window.rs +++ b/alacritty/src/window.rs @@ -334,7 +334,7 @@ impl Window { #[cfg(windows)] pub fn set_urgent(&self, _is_urgent: bool) {} - pub fn set_outer_position(&self, pos: PhysicalPosition) { + pub fn set_outer_position(&self, pos: PhysicalPosition) { self.window().set_outer_position(pos); } -- cgit