Skip to content

Commit 21897b5

Browse files
committed
Hide ColorBar and SetValueWithoutRaisingEvent from public API
1 parent f9f62a5 commit 21897b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Terminal.Gui/Views/ColorBar.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/// A bar representing a single component of a <see cref="Color"/> e.g.
55
/// the Red portion of a <see cref="ColorModel.RGB"/>.
66
/// </summary>
7-
public abstract class ColorBar : View, IColorBar
7+
internal abstract class ColorBar : View, IColorBar
88
{
99
/// <summary>
1010
/// X coordinate that the bar starts at excluding any label.
@@ -48,7 +48,7 @@ public int Value
4848
}
4949

5050
/// <inheritdoc />
51-
public void SetValueWithoutRaisingEvent (int v)
51+
void IColorBar.SetValueWithoutRaisingEvent (int v)
5252
{
5353
_value = v;
5454
SetNeedsDisplay ();

0 commit comments

Comments
 (0)