diff --git a/src/bin/main.rs b/src/bin/main.rs index bb4966a1..14cfb71d 100644 --- a/src/bin/main.rs +++ b/src/bin/main.rs @@ -15,7 +15,7 @@ async fn main() { let native_options = eframe::NativeOptions::default(); let _res = eframe::run_native( - "Damus Desktop", + "Damus NoteDeck", native_options, Box::new(|_cc| Box::new(Damus::new())), ); diff --git a/src/lib.rs b/src/lib.rs index 2090d1b4..74e9d5a8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -33,7 +33,7 @@ pub fn android_main(app: AndroidApp) { })); eframe::run_native( - "Damus Desktop", + "Damus NoteDeck", options, Box::new(|_cc| Box::new(Damus::new())), );