fix propagate player update to participant views

This commit is contained in:
Maxime Réaux 2026-02-10 11:09:58 +01:00
parent 7792a76f8e
commit dd886802f4
6 changed files with 24 additions and 21 deletions

View file

@ -40,3 +40,5 @@ class PlayerController:
if not self._validate_player_inputs(name):
return
self.app.model.update_player(player_id, name=name)
# Propagate update to participants
self.app.navigation.refresh(RefreshScope.CURRENT_SELECTION_DETAILS)