diff --git a/src/bin/notedeck.rs b/src/bin/notedeck.rs index 4bf4b128..8183a99f 100644 --- a/src/bin/notedeck.rs +++ b/src/bin/notedeck.rs @@ -72,7 +72,7 @@ async fn main() { setup_logging(&path); let _res = eframe::run_native( - "Damus NoteDeck", + "Damus Notedeck", generate_native_options(path), Box::new(|cc| { Ok(Box::new(Damus::new( diff --git a/src/lib.rs b/src/lib.rs index 7771b8ac..42ef2566 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -82,7 +82,7 @@ pub async fn android_main(app: AndroidApp) { let app_args = get_app_args(app); let _res = eframe::run_native( - "Damus NoteDeck", + "Damus Notedeck", options, Box::new(move |cc| Ok(Box::new(Damus::new(&cc.egui_ctx, path, app_args)))), );