From f28f6893bbe8bbf6929ede8df89bdb57da77f6af Mon Sep 17 00:00:00 2001 From: ranfdev Date: Sat, 5 Oct 2024 21:46:20 +0200 Subject: [PATCH] fmt --- rustfmt.toml | 2 -- src/widgets/window.rs | 3 ++- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/rustfmt.toml b/rustfmt.toml index 6510695..e69de29 100644 --- a/rustfmt.toml +++ b/rustfmt.toml @@ -1,2 +0,0 @@ -unstable_features = true -group_imports = "StdExternalCrate" diff --git a/src/widgets/window.rs b/src/widgets/window.rs index c0730db..67c1e14 100644 --- a/src/widgets/window.rs +++ b/src/widgets/window.rs @@ -236,7 +236,8 @@ impl NotifyWindow { imp.code_btn.connect_clicked(move |_| { let this = this.clone(); this.selected_subscription().map(move |sub| { - AdvancedMessageDialog::new(sub, this.imp().entry.text().to_string()).present(Some(&this)) + AdvancedMessageDialog::new(sub, this.imp().entry.text().to_string()) + .present(Some(&this)) }); }); }