diff options
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 } } |