core: layout: fix indentation in is_label_modifier

This commit is contained in:
Richard Acayan 2024-07-22 21:30:14 -04:00
parent eb61256b2c
commit 90a32cc50c

View file

@ -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
}