We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9f62a5 commit 21897b5Copy full SHA for 21897b5
Terminal.Gui/Views/ColorBar.cs
@@ -4,7 +4,7 @@
4
/// A bar representing a single component of a <see cref="Color"/> e.g.
5
/// the Red portion of a <see cref="ColorModel.RGB"/>.
6
/// </summary>
7
-public abstract class ColorBar : View, IColorBar
+internal abstract class ColorBar : View, IColorBar
8
{
9
/// <summary>
10
/// X coordinate that the bar starts at excluding any label.
@@ -48,7 +48,7 @@ public int Value
48
}
49
50
/// <inheritdoc />
51
- public void SetValueWithoutRaisingEvent (int v)
+ void IColorBar.SetValueWithoutRaisingEvent (int v)
52
53
_value = v;
54
SetNeedsDisplay ();
0 commit comments