Skip to content

Commit 98f6000

Browse files
committed
style: rustfmt (wrap boxed send call)
1 parent 817e797 commit 98f6000

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/ui/mod.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,9 @@ impl SettingsApp {
164164
let mut shared = self.config_shared.lock().unwrap();
165165
*shared = self.config.clone();
166166
}
167-
let _ = self.cmd_tx.send(Cmd::ConfigUpdated(Box::new(self.config.clone())));
167+
let _ = self
168+
.cmd_tx
169+
.send(Cmd::ConfigUpdated(Box::new(self.config.clone())));
168170
}
169171
}
170172

0 commit comments

Comments
 (0)