diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-01-11 02:23:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-11 02:23:13 +0100 |
commit | c2c8d6bf371433a3158fda769829714c5b99f62a (patch) | |
tree | ef5e8624174aa108de8a7f62f09f0fa18904c2cf /alacritty/src | |
parent | c34ec12c309695e4c14d8e50b5f3f54198f70775 (diff) | |
download | r-alacritty-c2c8d6bf371433a3158fda769829714c5b99f62a.tar.gz r-alacritty-c2c8d6bf371433a3158fda769829714c5b99f62a.tar.bz2 r-alacritty-c2c8d6bf371433a3158fda769829714c5b99f62a.zip |
Move Alacritty to organization
This fixes various outdated links pointing to the old jwilm/alacritty
repository.
Since `copypasta` now has its own github repository at
https://github.com/alacritty/copypasta, the sources have been removed
from Alacritty.
Diffstat (limited to 'alacritty/src')
-rw-r--r-- | alacritty/src/display.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/src/display.rs b/alacritty/src/display.rs index cd526d97..317c8758 100644 --- a/alacritty/src/display.rs +++ b/alacritty/src/display.rs @@ -214,7 +214,7 @@ impl Display { // Set window position // // TODO: replace `set_position` with `with_position` once available - // Upstream issue: https://github.com/tomaka/winit/issues/806 + // Upstream issue: https://github.com/rust-windowing/winit/issues/806 if let Some(position) = config.window.position { window.set_outer_position(PhysicalPosition::from((position.x, position.y))); } |