Skip to content

Commit da5a429

Browse files
committed
Fix CS1591 XML documentation warnings
1 parent a3b6ca7 commit da5a429

3 files changed

Lines changed: 4 additions & 0 deletions

File tree

SharpConsoleUI/Builders/ListBuilder.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,7 @@ public ListBuilder WithScrollbarVisibility(ScrollbarVisibility visibility)
354354
return this;
355355
}
356356

357+
/// <inheritdoc cref="ListControl.AutoHighlightOnFocus"/>
357358
public ListBuilder WithAutoHighlightOnFocus(bool enabled = true)
358359
{
359360
_autoHighlightOnFocus = enabled;

SharpConsoleUI/Controls/TreeControl/TreeControl.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@ public bool SelectOnRightClick
221221
set { _selectOnRightClick = value; OnPropertyChanged(); }
222222
}
223223

224+
/// <inheritdoc/>
224225
public ScrollbarVisibility ScrollbarVisibility
225226
{
226227
get => _scrollbarVisibility;

SharpConsoleUI/Helpers/ScrollbarHelper.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ namespace SharpConsoleUI.Helpers
1414
/// <summary>
1515
/// Identifies which part of a scrollbar was hit by a click.
1616
/// </summary>
17+
#pragma warning disable CS1591
1718
public enum ScrollbarHitZone
1819
{
1920
None,
@@ -23,6 +24,7 @@ public enum ScrollbarHitZone
2324
TrackAbove,
2425
TrackBelow
2526
}
27+
#pragma warning restore CS1591
2628

2729
/// <summary>
2830
/// Shared scrollbar geometry, drawing, and hit testing logic.

0 commit comments

Comments
 (0)