Skip to content

Commit

Permalink
more special character fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jornbr committed Mar 6, 2021
1 parent b18cc19 commit 4a5fda4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ private void InitializeComponent()
this.menuRotate180.MergeIndex = 2;
this.menuRotate180.Name = "menuRotate180";
this.menuRotate180.Size = new System.Drawing.Size(206, 22);
this.menuRotate180.Text = "Rotate 180";
this.menuRotate180.Text = "Rotate 180°";
this.menuRotate180.Click += new System.EventHandler(this.menuRotateX_Click);
//
// menuStraightenAxes
Expand Down Expand Up @@ -2110,7 +2110,7 @@ private void menuRotateX_Click(object sender, System.EventArgs e)
case "Rotate right":
this.plotBox1.Rotation += 90F;
break;
case "Rotate 180":
case "Rotate 180°":
this.plotBox1.Rotation += 180F;
break;
default:
Expand Down

0 comments on commit 4a5fda4

Please sign in to comment.