diff options
| -rw-r--r-- | niri-config/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
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) } |
