From 90a32cc50cf07dee52dea673eb2c6202c567b23a Mon Sep 17 00:00:00 2001 From: Richard Acayan Date: Mon, 22 Jul 2024 21:30:14 -0400 Subject: [PATCH] core: layout: fix indentation in is_label_modifier --- src/core/layout.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/layout.rs b/src/core/layout.rs index b22e5f6..c96012b 100644 --- a/src/core/layout.rs +++ b/src/core/layout.rs @@ -320,8 +320,8 @@ impl Layout { pub fn is_label_modifier(modifier: usize) -> bool { - // Shift does not change the keysym used for input, but changes the - // rendered keysym. + // Shift does not change the keysym used for input, but changes the + // rendered keysym. Self::is_keysym_modifier(modifier) || modifier == MOD_SHIFT }