diff options
author | Hop311 <Hop3114@gmail.com> | 2024-06-08 16:54:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-08 16:54:37 +0200 |
commit | 3dd525092e3a6027f20f0a1afdf8e871a9eecd34 (patch) | |
tree | aea64483ffb003d74c0671f9f2a4db878a3b8cb3 /game/src/Game/GameSession/NationManagementScreen/PopulationMenu.gd | |
parent | fb74bc86d194b50cb3277c7f367a5e5a0316c948 (diff) | |
parent | 0ba36e6762615d17605a573a036aff5bf84dfc95 (diff) |
Merge pull request #232 from OpenVicProject/province-const-mutable
Province const/mutable + proper State names
Diffstat (limited to 'game/src/Game/GameSession/NationManagementScreen/PopulationMenu.gd')
-rw-r--r-- | game/src/Game/GameSession/NationManagementScreen/PopulationMenu.gd | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/game/src/Game/GameSession/NationManagementScreen/PopulationMenu.gd b/game/src/Game/GameSession/NationManagementScreen/PopulationMenu.gd index 15f8dca..c3e091e 100644 --- a/game/src/Game/GameSession/NationManagementScreen/PopulationMenu.gd +++ b/game/src/Game/GameSession/NationManagementScreen/PopulationMenu.gd @@ -458,6 +458,7 @@ func _update_province_list(scroll_index : int = -1) -> void: GUINode.format_province_name(province_list_info[name_key]) if type == MenuSingleton.LIST_ENTRY_PROVINCE else province_list_info[name_key] ) + _province_list_name_labels[index].set_text_overrun_behavior(TextServer.OVERRUN_TRIM_ELLIPSIS) if _province_list_size_labels[index]: _province_list_size_labels[index].set_text(GUINode.int_to_string_suffixed(province_list_info[size_key])) |