mirror of
https://github.com/niri-wm/niri.git
synced 2026-06-23 02:05:33 +07:00
Fix Clippy warning
This commit is contained in:
+5
-3
@@ -993,9 +993,11 @@ mod tests {
|
||||
)
|
||||
};
|
||||
|
||||
let mut mods = ModifiersState::default();
|
||||
mods.logo = true;
|
||||
mods.ctrl = true;
|
||||
let mut mods = ModifiersState {
|
||||
logo: true,
|
||||
ctrl: true,
|
||||
..Default::default()
|
||||
};
|
||||
|
||||
// Action press/release.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user