From 76671ff6b6368272fc5bdb8c767fcfe3f12c1623 Mon Sep 17 00:00:00 2001 From: SomeTroglodyte <63000004+SomeTroglodyte@users.noreply.github.com> Date: Sat, 3 Aug 2024 22:19:20 +0200 Subject: [PATCH] Make right arrow glyph moddable (#12055) --- core/src/com/unciv/ui/components/fonts/Fonts.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/com/unciv/ui/components/fonts/Fonts.kt b/core/src/com/unciv/ui/components/fonts/Fonts.kt index a58cafd69d..5e639230f6 100644 --- a/core/src/com/unciv/ui/components/fonts/Fonts.kt +++ b/core/src/com/unciv/ui/components/fonts/Fonts.kt @@ -137,6 +137,7 @@ object Fonts { // Taken into account when limiting FontRulesetIcons codepoints (it respects the private area ending at U+F8FF) const val sortUpArrow = '↑' // U+FFEA 'half wide upward arrow' const val sortDownArrow = '↓' // U+FFEC 'half wide downward arrow' + const val rightArrow = '→' // U+2192, e.g. Battle table or event-based tutorials //endregion val allSymbols = mapOf( @@ -165,6 +166,7 @@ object Fonts { status to "EmojiIcons/SortedByStatus", sortUpArrow to "EmojiIcons/SortedAscending", sortDownArrow to "EmojiIcons/SortedDescending", + rightArrow to "EmojiIcons/RightArrow", *MayaCalendar.allSymbols ) //endregion