From a0be5f0173116a4d4b54bd844115125b591d246a Mon Sep 17 00:00:00 2001 From: William Casarin Date: Thu, 6 Jul 2023 14:18:35 -0700 Subject: [PATCH] desktop -> notedeck --- src/bin/main.rs | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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())), );