Skip to content

Commit

Permalink
chg - Applied the fix
Browse files Browse the repository at this point in the history
---

Type: chg
Breaking: False
Doc Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed May 23, 2024
1 parent 575ab35 commit 13fba25
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions BassBoom.Cli/BassBoom.Cli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Terminaux" Version="4.0.0.1" />
<PackageReference Include="Terminaux.ResizeListener" Version="4.0.0.1" />
<PackageReference Include="Terminaux" Version="4.0.0.2" />
<PackageReference Include="Terminaux.ResizeListener" Version="4.0.0.2" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion BassBoom.Cli/CliBase/Equalizer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ private static string HandleDraw()
choices.Add(new($"{i + 1}", bandData));
}
drawn.Append(
SelectionInputTools.RenderSelections([.. choices], 2, 3, currentBandIdx, bandsPerPage, ConsoleWrapper.WindowWidth - 4, altChoicePos: choices.Count, selectedForegroundColor: new Color(ConsoleColors.Green), foregroundColor: new Color(ConsoleColors.Silver))
SelectionInputTools.RenderSelections([.. choices], 2, 3, currentBandIdx, bandsPerPage, ConsoleWrapper.WindowWidth - 4, selectedForegroundColor: new Color(ConsoleColors.Green), foregroundColor: new Color(ConsoleColors.Silver))
);
return drawn.ToString();
}
Expand Down
2 changes: 1 addition & 1 deletion BassBoom.Cli/CliBase/Player.cs
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ private static string HandleDraw()
choices.Add(new($"{i + 1}", finalEntry));
}
drawn.Append(
SelectionInputTools.RenderSelections([.. choices], 2, 3, currentSong - 1, songsPerPage, ConsoleWrapper.WindowWidth - 4, altChoicePos: choices.Count, selectedForegroundColor: new Color(ConsoleColors.Green), altForegroundColor: new Color(ConsoleColors.Silver))
SelectionInputTools.RenderSelections([.. choices], 2, 3, currentSong - 1, songsPerPage, ConsoleWrapper.WindowWidth - 4, selectedForegroundColor: new Color(ConsoleColors.Green), altForegroundColor: new Color(ConsoleColors.Silver))
);
return drawn.ToString();
}
Expand Down
4 changes: 2 additions & 2 deletions BassBoom.Synthesis/BassBoom.Synthesis.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Terminaux" Version="4.0.0.1" />
<PackageReference Include="Terminaux.ResizeListener" Version="4.0.0.1" />
<PackageReference Include="Terminaux" Version="4.0.0.2" />
<PackageReference Include="Terminaux.ResizeListener" Version="4.0.0.2" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 13fba25

Please sign in to comment.