Skip to content

Commit

Permalink
5.1.3 Fix Config summary
Browse files Browse the repository at this point in the history
  • Loading branch information
farmerbriantee committed Apr 23, 2021
1 parent 188a874 commit d53c3e7
Show file tree
Hide file tree
Showing 5 changed files with 73 additions and 40 deletions.
10 changes: 5 additions & 5 deletions SourceCode/GPS/Classes/CTool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,19 +117,19 @@ public void DrawTool()
//draw the rigid hitch
GL.Color3(0, 0, 0);
GL.Begin(PrimitiveType.LineLoop);
GL.Vertex3(-1, trailingTank, 0);
GL.Vertex3(-0.57, trailingTank, 0);
GL.Vertex3(0, 0, 0);
GL.Vertex3(1, trailingTank, 0);
GL.Vertex3(0.57, trailingTank, 0);

GL.End();

GL.LineWidth(1);
//draw the rigid hitch
GL.Color3(0.65f, 0.6f, 0.2f);
GL.Color3(0.765f, 0.76f, 0.32f);
GL.Begin(PrimitiveType.LineLoop);
GL.Vertex3(-1, trailingTank, 0);
GL.Vertex3(-0.57, trailingTank, 0);
GL.Vertex3(0, 0, 0);
GL.Vertex3(1, trailingTank, 0);
GL.Vertex3(0.57, trailingTank, 0);

GL.End();

Expand Down
2 changes: 1 addition & 1 deletion SourceCode/GPS/Forms/Settings/ConfigTool.Designer.cs

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

33 changes: 33 additions & 0 deletions SourceCode/GPS/Forms/Settings/ConfigVehicle.Designer.cs

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

64 changes: 32 additions & 32 deletions SourceCode/GPS/Forms/Settings/FormConfig.Designer.cs

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

4 changes: 2 additions & 2 deletions SourceCode/GPS/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,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("5.1.2")]
[assembly: AssemblyFileVersion("5.1.2")]
[assembly: AssemblyVersion("5.1.3")]
[assembly: AssemblyFileVersion("5.1.3")]

0 comments on commit d53c3e7

Please sign in to comment.