diff options
author | Christian Duerr <contact@christianduerr.com> | 2021-02-13 18:15:57 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-13 18:15:57 +0000 |
commit | d872b9f3aed225bcae74ee3707a690c1a096608e (patch) | |
tree | f0686a59463c65e218b4b3945b6249ecc1dfc0f3 /alacritty/src/display/wayland_theme.rs | |
parent | a5e2ccd5aba720cc63af4079e7f5e5afb6d9b893 (diff) | |
download | r-alacritty-d872b9f3aed225bcae74ee3707a690c1a096608e.tar.gz r-alacritty-d872b9f3aed225bcae74ee3707a690c1a096608e.tar.bz2 r-alacritty-d872b9f3aed225bcae74ee3707a690c1a096608e.zip |
Update dependencies
This introduces some duplicate dependencies, though they are necessary
to build properly without any warnings.
Fixes #4735.
Diffstat (limited to 'alacritty/src/display/wayland_theme.rs')
-rw-r--r-- | alacritty/src/display/wayland_theme.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alacritty/src/display/wayland_theme.rs b/alacritty/src/display/wayland_theme.rs index 1932ae01..7a9aac16 100644 --- a/alacritty/src/display/wayland_theme.rs +++ b/alacritty/src/display/wayland_theme.rs @@ -70,11 +70,11 @@ impl WaylandTheme for AlacrittyWaylandTheme { } } -trait IntoARGBColor { +trait IntoArgbColor { fn into_rgba(self) -> ARGBColor; } -impl IntoARGBColor for Rgb { +impl IntoArgbColor for Rgb { fn into_rgba(self) -> ARGBColor { ARGBColor { a: 0xff, r: self.r, g: self.g, b: self.b } } |