From 912d7de2e69a899f85e84e50c40f5974393d29de Mon Sep 17 00:00:00 2001 From: enricobuehler Date: Tue, 7 Jul 2026 00:22:46 +0200 Subject: [PATCH] style(linux): rustfmt drift from the last two commits Co-Authored-By: Claude Sonnet 5 --- clients/linux/src/ui_hosts.rs | 6 +++++- clients/linux/src/ui_stream.rs | 5 ++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/clients/linux/src/ui_hosts.rs b/clients/linux/src/ui_hosts.rs index f72bf9fb..ecf98381 100644 --- a/clients/linux/src/ui_hosts.rs +++ b/clients/linux/src/ui_hosts.rs @@ -774,6 +774,10 @@ mod tests { // instead of returning. flow.emit_by_name::<()>("child-activated", &[&child]); - assert_eq!(fired.get(), 1, "the per-card handler should fire exactly once"); + assert_eq!( + fired.get(), + 1, + "the per-card handler should fire exactly once" + ); } } diff --git a/clients/linux/src/ui_stream.rs b/clients/linux/src/ui_stream.rs index fed3dc3a..91cb8796 100644 --- a/clients/linux/src/ui_stream.rs +++ b/clients/linux/src/ui_stream.rs @@ -806,7 +806,10 @@ fn attach_keyboard( | gdk::ModifierType::ALT_MASK | gdk::ModifierType::SHIFT_MASK; if state.contains(chord) && keyval.to_lower() == gdk::Key::q { - tracing::info!(captured = cap.captured.get(), "chord: Ctrl+Alt+Shift+Q (release/engage)"); + tracing::info!( + captured = cap.captured.get(), + "chord: Ctrl+Alt+Shift+Q (release/engage)" + ); if cap.captured.get() { cap.release(); } else {