diff options
author | hop311 <hop3114@gmail.com> | 2024-07-30 01:02:35 +0200 |
---|---|---|
committer | hop311 <hop3114@gmail.com> | 2024-07-30 01:07:56 +0200 |
commit | 70f3c3cf6f9c1563d95ffb8c25bf8cd2bb7a1ad0 (patch) | |
tree | 5f96f7520816721a058bef8e59929c961d4c7ef2 /extension/src/openvic-extension/singletons/PopulationMenu.cpp | |
parent | bf4d061b06374cd696f1f1644548f4d7af86f5ec (diff) |
Search panel + text edit box UI generationsearch-panel
Diffstat (limited to 'extension/src/openvic-extension/singletons/PopulationMenu.cpp')
-rw-r--r-- | extension/src/openvic-extension/singletons/PopulationMenu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/src/openvic-extension/singletons/PopulationMenu.cpp b/extension/src/openvic-extension/singletons/PopulationMenu.cpp index df5b6b1..65987ad 100644 --- a/extension/src/openvic-extension/singletons/PopulationMenu.cpp +++ b/extension/src/openvic-extension/singletons/PopulationMenu.cpp @@ -110,7 +110,7 @@ TypedArray<Dictionary> MenuSingleton::get_population_menu_province_list_rows(int country_dict[type_key] = population_menu_t::LIST_ENTRY_COUNTRY; country_dict[index_key] = index; - country_dict[name_key] = std_view_to_godot_string(country_entry.country.get_identifier()); + country_dict[name_key] = menu_singleton.get_country_name(country_entry.country); country_dict[size_key] = country_entry.country.get_total_population(); country_dict[change_key] = 0; country_dict[selected_key] = country_entry.selected; |