Skip to content

Commit

Permalink
Updated SICVM Build to 24.12.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottPiersall committed Dec 7, 2024
1 parent 576165f commit 3a79ad8
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions SIC Simulator/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1383,6 +1383,16 @@ private void ApplyThemeToControl(Control control, Color backColor, Color foreCol
toolStrip.ForeColor = foreColor;
}

if ( control is TabControl tbControl)
{
foreach ( TabPage tp in tbControl.TabPages)
{
tp.BackColor = backColor;
tp.ForeColor = foreColor;
tp.UseVisualStyleBackColor = true;
}
}

foreach (Control child in control.Controls)
{
ApplyThemeToControl(child, backColor, foreColor);
Expand Down
6 changes: 3 additions & 3 deletions SIC Simulator/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Scott Piersall and Students")]
[assembly: AssemblyProduct("SIC Simulator")]
[assembly: AssemblyCopyright("Copyright © 2020 2021")]
[assembly: AssemblyCopyright("Copyright © 2020 2021 2024")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("21.12.16.1")]
[assembly: AssemblyFileVersion("21.12.16.1")]
[assembly: AssemblyVersion("24.12.7.1")]
[assembly: AssemblyFileVersion("24.12.7.1")]
Binary file not shown.
Binary file not shown.

0 comments on commit 3a79ad8

Please sign in to comment.