From 402dfb48c7747dba0886799742532bc207a18cfb Mon Sep 17 00:00:00 2001 From: pieterdd Date: Sat, 27 Jun 2026 12:44:51 +0200 Subject: [PATCH] Fix copypaste issue on about screen --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 551a3c3..71068f1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -702,11 +702,11 @@ impl Component for App { let cloned_root = root.clone(); let about_action: RelmAction = RelmAction::new_stateless(move |_| { let dialog = adw::AboutDialog::builder() - .application_name("Stretch Break") + .application_name("Rclone Shuttle") .application_icon(APP_ID) .developer_name("pieterdd") .version(env!("CARGO_PKG_VERSION")) - .website("https://github.com/pieterdd/StretchBreak/") + .website("https://github.com/pieterdd/RcloneShuttle/") .build(); dialog.present(Some(&cloned_root)); });