Skip to content

Commit

Permalink
Fix Svenn color
Browse files Browse the repository at this point in the history
  • Loading branch information
farmerbriantee committed Jan 8, 2025
1 parent a6ce98f commit 12564b0
Show file tree
Hide file tree
Showing 4 changed files with 278 additions and 54 deletions.
2 changes: 1 addition & 1 deletion SourceCode/GPS/Classes/CVehicle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ public void DrawVehicle()
double svennDist = mf.camera.camSetDistance * -0.07;
double svennWidth = svennDist * 0.22;
GL.LineWidth(mf.ABLine.lineWidth);
GL.Color3(1.2, 1.25, 0.10);
GL.Color3(0.95, 0.95, 0.10);
GL.Begin(PrimitiveType.LineStrip);
{
GL.Vertex3(svennWidth, wheelbase + svennDist, 0.0);
Expand Down
93 changes: 41 additions & 52 deletions SourceCode/GPS/Forms/Form_First.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion SourceCode/GPS/Forms/Form_First.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ private void linkLabelCombineForum_LinkClicked(object sender, LinkLabelLinkClick

private void Form_About_Load(object sender, EventArgs e)
{
lblVersion.Text = "Version " + GitVersionInformation.SemVer;
lblVersion.Text = "Terms and Conditions of Version " + GitVersionInformation.SemVer;

// Add a link to the LinkLabel.
LinkLabel.Link link = new LinkLabel.Link { LinkData = "https://github.com/AgOpenGPS-Official/AgOpenGPS" };
Expand Down
Loading

0 comments on commit 12564b0

Please sign in to comment.