diff options
| author | Ruben Beltran del Rio <jj@r.bdr.sh> | 2025-12-18 22:28:15 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <jj@r.bdr.sh> | 2025-12-18 22:37:49 +0100 |
| commit | 45de26ebfc5996a6db250421030dc79d6e13d9a7 (patch) | |
| tree | f13956396db824d6f2fe81066403aa308a1ffd1a /Map/Presentation/Base Components/EvolutionPicker/EvolutionPicker.swift | |
| parent | 1b55fdad5984841334e864db942693cfef10e645 (diff) | |
Add help for evolution picker4.3.0
Diffstat (limited to 'Map/Presentation/Base Components/EvolutionPicker/EvolutionPicker.swift')
| -rw-r--r-- | Map/Presentation/Base Components/EvolutionPicker/EvolutionPicker.swift | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Map/Presentation/Base Components/EvolutionPicker/EvolutionPicker.swift b/Map/Presentation/Base Components/EvolutionPicker/EvolutionPicker.swift index 5983745..42edfb5 100644 --- a/Map/Presentation/Base Components/EvolutionPicker/EvolutionPicker.swift +++ b/Map/Presentation/Base Components/EvolutionPicker/EvolutionPicker.swift @@ -53,10 +53,14 @@ struct EvolutionPicker: View { .foregroundColor(isShowingMenu ? .Theme.UI.background : .Theme.UI.foreground) } } + .help("map_editor.stage_picker.help") .padding(.horizontal, Dimensions.Spacing.regular) .padding(.vertical, Dimensions.Spacing.cozy) } ) + .keyboardShortcut( + "y", modifiers: EventModifiers([.command]) + ) .buttonStyle(.borderless) .background(isShowingMenu ? Color.Theme.UI.foreground : Color.clear) .cornerRadius(Dimensions.EvolutionPicker.radius) |