clippy: allow collapsible match

clippy being annoying

Signed-off-by: kernelkind <kernelkind@gmail.com>
This commit is contained in:
kernelkind
2025-08-17 15:04:47 -04:00
parent c79d5f1b9e
commit 0b12b08c59

View File

@@ -62,6 +62,7 @@ pub struct Damus {
fn handle_key_events(input: &egui::InputState, columns: &mut Columns) {
for event in &input.raw.events {
#[allow(clippy::collapsible_match)]
if let egui::Event::Key {
key, pressed: true, ..
} = event