From 5aa02816c47e4b50fc51bcb830c5864f681b3913 Mon Sep 17 00:00:00 2001 From: Matthias Krüger Date: Fri, 12 Mar 2021 20:40:18 +0100 Subject: Fix inconsistent_struct_constructor clippy lint --- alacritty/src/display/wayland_theme.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'alacritty/src/display') diff --git a/alacritty/src/display/wayland_theme.rs b/alacritty/src/display/wayland_theme.rs index 7a9aac16..b56ad0c7 100644 --- a/alacritty/src/display/wayland_theme.rs +++ b/alacritty/src/display/wayland_theme.rs @@ -8,8 +8,8 @@ const INACTIVE_OPACITY: u8 = 127; #[derive(Debug, Clone)] pub struct AlacrittyWaylandTheme { - pub background: ARGBColor, pub foreground: ARGBColor, + pub background: ARGBColor, pub dim_foreground: ARGBColor, pub hovered_close_icon: ARGBColor, pub hovered_maximize_icon: ARGBColor, @@ -32,8 +32,8 @@ impl AlacrittyWaylandTheme { background, dim_foreground, hovered_close_icon, - hovered_minimize_icon, hovered_maximize_icon, + hovered_minimize_icon, } } } -- cgit