diff --git a/solitaire_engine/src/help_plugin.rs b/solitaire_engine/src/help_plugin.rs index fdb1a4d..9e4f32c 100644 --- a/solitaire_engine/src/help_plugin.rs +++ b/solitaire_engine/src/help_plugin.rs @@ -20,7 +20,7 @@ use crate::ui_theme::{ #[derive(Component, Debug)] pub struct HelpScreen; -/// Marker on the "Close" button inside the Help modal. +/// Marker on the "Done" button inside the Help modal. #[derive(Component, Debug)] pub struct HelpCloseButton; @@ -56,7 +56,7 @@ fn toggle_help_screen( } } -/// Click handler for the modal's "Close" button. F1 toggles the overlay +/// Click handler for the modal's "Done" button. F1 toggles the overlay /// the same way; this just exposes the close action to mouse / touch. fn handle_help_close_button( mut commands: Commands, @@ -194,7 +194,7 @@ fn spawn_help_screen(commands: &mut Commands, font_res: Option<&FontResource>) { spawn_modal_button( actions, HelpCloseButton, - "Close", + "Done", Some("F1"), ButtonVariant::Primary, font_res, diff --git a/solitaire_engine/src/onboarding_plugin.rs b/solitaire_engine/src/onboarding_plugin.rs index 53f643f..5ed465e 100644 --- a/solitaire_engine/src/onboarding_plugin.rs +++ b/solitaire_engine/src/onboarding_plugin.rs @@ -166,7 +166,7 @@ fn handle_onboarding_buttons( } if skip_pressed || (next_pressed && slide_index.0 == SLIDE_COUNT - 1) { - // Skip or final-slide "Start playing" — complete onboarding. + // Skip or final-slide "Let's play" — complete onboarding. complete_onboarding( &mut commands, &screens, @@ -412,7 +412,7 @@ fn spawn_slide_hotkeys(commands: &mut Commands, font_res: Option<&FontResource>) spawn_modal_button( actions, OnboardingNextButton, - "Start playing", + "Let's play", Some("→"), ButtonVariant::Primary, font_res,