Skip to content

Commit

Permalink
remove largescreen forecolour change
Browse files Browse the repository at this point in the history
  • Loading branch information
SK21 committed Dec 16, 2024
1 parent 249542e commit 703748e
Show file tree
Hide file tree
Showing 15 changed files with 3 additions and 15 deletions.
13 changes: 0 additions & 13 deletions RateAppSource/RateController/FormStart.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1236,14 +1236,6 @@ private void FormStart_Load(object sender, EventArgs e)
cStartTime = DateTime.Now;
}

private void FormStart_Paint(object sender, PaintEventArgs e)
{
Rectangle borderRectangle = this.ClientRectangle;
borderRectangle.Inflate(-10, -10);
ControlPaint.DrawBorder3D(e.Graphics, borderRectangle,
Border3DStyle.Raised);
}

private void FormStart_Resize(object sender, EventArgs e)
{
Invalidate();
Expand Down Expand Up @@ -1393,11 +1385,6 @@ private void lbTarget_HelpRequested(object sender, HelpEventArgs hlpevent)
hlpevent.Handled = true;
}

private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
ShowSettings();
}

private void LoadDefaultProduct()
{
if (int.TryParse(Tls.LoadProperty("DefaultProduct"), out int DP)) cDefaultProduct = DP;
Expand Down
5 changes: 3 additions & 2 deletions RateAppSource/RateController/frmLargeScreen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ public void SetTransparent()
this.FormBorderStyle = FormBorderStyle.None;
this.Top += TransTopOffset;
this.Left += TransLeftOffset;
SetDisplay(Properties.Settings.Default.ForeColour);
//SetDisplay(Properties.Settings.Default.ForeColour);
SetDisplay(Color.Yellow);
}
else
{
Expand Down Expand Up @@ -480,7 +481,7 @@ private void mainform_MouseClick(object sender, MouseEventArgs e)

private void Mf_ColorChanged(object sender, EventArgs e)
{
SetDisplay(Properties.Settings.Default.ForeColour);
//SetDisplay(Properties.Settings.Default.ForeColour);
}

private void MnuComm_Click(object sender, EventArgs e)
Expand Down
Binary file not shown.
Binary file not shown.
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 703748e

Please sign in to comment.