From c64d9e5223a4a19fa718dc5a0b3e74dd6ee3b0e0 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Thu, 16 May 2024 11:29:30 +0400 Subject: Fix missing check in Match PartialEq --- niri-config/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/niri-config/src/lib.rs b/niri-config/src/lib.rs index 5e04f6ed..76b33f74 100644 --- a/niri-config/src/lib.rs +++ b/niri-config/src/lib.rs @@ -770,6 +770,7 @@ impl PartialEq for Match { fn eq(&self, other: &Self) -> bool { self.is_active == other.is_active && self.is_focused == other.is_focused + && self.is_active_in_column == other.is_active_in_column && self.app_id.as_ref().map(Regex::as_str) == other.app_id.as_ref().map(Regex::as_str) && self.title.as_ref().map(Regex::as_str) == other.title.as_ref().map(Regex::as_str) } -- cgit