Skip to content

Commit

Permalink
Merge pull request #909 from UltraStar-Deluxe/fix-tournament-nameinput
Browse files Browse the repository at this point in the history
allow to set player names in party->tournament again
  • Loading branch information
basisbit authored Oct 11, 2024
2 parents 459a0f8 + 62b3a66 commit 5468dbc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/screens/UScreenPartyTournamentPlayer.pas
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ function TScreenPartyTournamentPlayer.ParseInput(PressedKey: cardinal; CharCode:
until ((Interactions[Interaction].Typ = iSelectS) and
SelectsS[Interactions[Interaction].Num].Visible) or
(Button[Interactions[Interaction].Num].Visible);
SetTextInput(Interactions[Interaction].Typ = iButton);
end;
procedure IntPrev;
begin
Expand All @@ -187,6 +188,7 @@ function TScreenPartyTournamentPlayer.ParseInput(PressedKey: cardinal; CharCode:
until ((Interactions[Interaction].Typ = iSelectS) and
SelectsS[Interactions[Interaction].Num].Visible) or
(Button[Interactions[Interaction].Num].Visible);
SetTextInput(Interactions[Interaction].Typ = iButton);
end;
begin
Result := true;
Expand Down

0 comments on commit 5468dbc

Please sign in to comment.