#1: Fixed bug with inspiration list and search list not updating on sync and server changed
All checks were successful
Build / build (push) Successful in 1m30s

This commit is contained in:
2025-08-24 12:00:29 +02:00
parent f46e742cdc
commit 3e4d417b4f
6 changed files with 55 additions and 15 deletions

View File

@@ -99,9 +99,11 @@ func compile_regex(search_term: String) -> RegEx:
return regex
func get_list_of_games() -> void:
print("get_list_of_games")
var handle_games = func handle_games(array):
if typeof(array) == TYPE_ARRAY:
games = []
Settings.delete_children(search_list)
games.append_array(array)
for game in games:
var label := Label.new()