Skip to content

Commit 70691cb

Browse files
author
Pavel Kovalenko
committed
Fix typo.
1 parent a294fcd commit 70691cb

File tree

3 files changed

+26
-26
lines changed

3 files changed

+26
-26
lines changed

src/editors/xrSdkControls/Controls/ColorPicker/ColorPicker.Designer.cs

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/editors/xrSdkControls/Controls/ColorPicker/ColorPicker.cs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public sealed partial class ColorPicker : UserControl
1010
public delegate void ColorChangedEventHandler(object sender, Color color);
1111

1212
private Color color;
13-
private bool hexademical;
13+
private bool hexadecimal;
1414

1515
public ColorPicker()
1616
{
@@ -34,19 +34,19 @@ public Color Value
3434
public byte Blue { get; private set; }
3535
public byte Alpha { get; private set; }
3636

37-
public bool Hexademical
37+
public bool Hexadecimal
3838
{
39-
get { return hexademical; }
39+
get { return hexadecimal; }
4040
set
4141
{
42-
if (hexademical == value)
42+
if (hexadecimal == value)
4343
return;
44-
hexademical = value;
45-
chkHexademical.Checked = value;
46-
islRed.Hexademical = value;
47-
islGreen.Hexademical = value;
48-
islBlue.Hexademical = value;
49-
islAlpha.Hexademical = value;
44+
hexadecimal = value;
45+
chkHexadecimal.Checked = value;
46+
islRed.Hexadecimal = value;
47+
islGreen.Hexadecimal = value;
48+
islBlue.Hexadecimal = value;
49+
islAlpha.Hexadecimal = value;
5050
}
5151
}
5252

@@ -56,7 +56,7 @@ private void ColorPicker_Load(object sender, EventArgs e)
5656
islGreen.ValueChanged += (obj, args) => UpdateColor();
5757
islBlue.ValueChanged += (obj, args) => UpdateColor();
5858
islAlpha.ValueChanged += (obj, args) => UpdateColor();
59-
chkHexademical.CheckedChanged += (obj, args) => Hexademical = chkHexademical.Checked;
59+
chkHexadecimal.CheckedChanged += (obj, args) => Hexadecimal = chkHexadecimal.Checked;
6060
UpdateColor();
6161
}
6262

src/editors/xrSdkControls/Controls/IntegerSlider/IntegerSlider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public int Maximum
4242
}
4343
}
4444

45-
public bool Hexademical
45+
public bool Hexadecimal
4646
{
4747
get { return numSpinner.Hexadecimal; }
4848
set { numSpinner.Hexadecimal = value; }

0 commit comments

Comments
 (0)