Skip to content

Commit

Permalink
fix summary page
Browse files Browse the repository at this point in the history
  • Loading branch information
SK21 committed Dec 2, 2024
1 parent faefbf0 commit a0fa2bc
Show file tree
Hide file tree
Showing 12 changed files with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion RateAppSource/RateController/FormStart.cs
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ public void UpdateStatus()
ProdName[i].Text = Products.Item(i).ProductName;

ProdName[i].BackColor = Color.Transparent;
ProdName[i].ForeColor = SimColor;
ProdName[i].ForeColor = Properties.Settings.Default.ForeColour;
ProdName[i].BorderStyle = BorderStyle.None;

Rates[i].Text = Products.Item(i).SmoothRate().ToString("N1");
Expand Down Expand Up @@ -1497,6 +1497,11 @@ private void SetDisplay()

lbOn.BackColor = Color.Transparent;
lbOff.BackColor = Color.Transparent;

for (int i = 0; i < MaxProducts; i++)
{
ProdName[i].ForeColor = Properties.Settings.Default.ForeColour;
}
}

private void SetLanguage()
Expand Down
Binary file modified RateAppSource/RateController/obj/Debug/RateController.exe
Binary file not shown.
Binary file modified RateAppSource/RateController/obj/Debug/RateController.pdb
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified RateControllerApp/RateController.exe
Binary file not shown.
Binary file modified RateControllerApp/de/RateController.resources.dll
Binary file not shown.
Binary file modified RateControllerApp/fr/RateController.resources.dll
Binary file not shown.
Binary file modified RateControllerApp/hu/RateController.resources.dll
Binary file not shown.
Binary file modified RateControllerApp/nl/RateController.resources.dll
Binary file not shown.
Binary file modified RateControllerApp/pl/RateController.resources.dll
Binary file not shown.
Binary file modified RateControllerApp/ru/RateController.resources.dll
Binary file not shown.

0 comments on commit a0fa2bc

Please sign in to comment.