Project names are now retrieved from the project settings using a virtual function in the BugbotServerAPI class.

This commit is contained in:
Jamie Greunbaum
2024-06-04 14:24:06 -04:00
parent 1900b0aeaa
commit cfe08da56c
5 changed files with 16 additions and 7 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ func fill_tags(tag_list:Array):
printerr("Invalid tag array format.")
return
__product_name.text = ProjectSettings.get_setting("application/config/name", __DEFAULT_PRODUCT_NAME)
__product_name.text = __server_api._get_project_name()
__fill_item_list(__version_button, BugbotServerAPI.BugbotTagArray.VERSION)
__fill_item_list(__hardware_button, BugbotServerAPI.BugbotTagArray.HARDWARE)
__fill_item_list(__os_button, BugbotServerAPI.BugbotTagArray.OS)