Skip to content

Commit 3b166f8

Browse files
MagicalTuxclaude
andcommitted
Fix rustfmt: wrap build_tray return tuple
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent db1e052 commit 3b166f8

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/gui.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,12 @@ fn build_tray(status: &Status) -> Result<(TrayIcon, MenuItem, MenuId, MenuId)> {
8585
// The tray is live now — tell the user where to look for it.
8686
notify_running();
8787

88-
Ok((tray, status_item, check_updates.id().clone(), quit.id().clone()))
88+
Ok((
89+
tray,
90+
status_item,
91+
check_updates.id().clone(),
92+
quit.id().clone(),
93+
))
8994
}
9095

9196
/// Pop a desktop notification announcing that the app is up, pointing the user

0 commit comments

Comments
 (0)