Skip to content

Commit

Permalink
Thinner borders between the toggle buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
HebaruSan committed Mar 27, 2021
1 parent eda31cd commit f4322ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions GUI/Controls/TriStateToggle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public TriStateToggle()
Appearance = Appearance.Button,
BackColor = SystemColors.Highlight,
FlatStyle = FlatStyle.Flat,
Location = new Point(33, 0),
Location = new Point(32, 0),
Size = new Size(33, 20),
Image = Properties.Resources.triToggleBoth,
Checked = true,
Expand All @@ -48,7 +48,7 @@ public TriStateToggle()
{
Appearance = Appearance.Button,
FlatStyle = FlatStyle.Flat,
Location = new Point(66, 0),
Location = new Point(64, 0),
Size = new Size(33, 20),
Image = Properties.Resources.triToggleNo,
UseVisualStyleBackColor = false,
Expand All @@ -60,7 +60,7 @@ public TriStateToggle()
Controls.Add(BothRadioButton);
Controls.Add(NoRadioButton);

Size = new Size(99, 20);
Size = new Size(97, 20);

ResumeLayout(false);
PerformLayout();
Expand Down

0 comments on commit f4322ed

Please sign in to comment.