Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Edward Miller committed Sep 14, 2024
1 parent 93801ca commit f1be846
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Maui.DataGrid/DataGrid.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1114,11 +1114,11 @@ private set
#region Methods

/// <summary>
/// Scrolls to the row
/// Scrolls to the row.
/// </summary>
/// <param name="item">Item to scroll</param>
/// <param name="position">Position of the row in screen</param>
/// <param name="animated">animated</param>
/// <param name="item">Item to scroll.</param>
/// <param name="position">Position of the row in screen.</param>
/// <param name="animated">animated.</param>
public void ScrollTo(object item, ScrollToPosition position, bool animated = true) => _collectionView.ScrollTo(item, position: position, animate: animated);

internal void Initialize()
Expand Down

0 comments on commit f1be846

Please sign in to comment.