Skip to content

Commit

Permalink
Merge pull request #207 from symbiogenesis/fix-186
Browse files Browse the repository at this point in the history
Fix scrolling issue
  • Loading branch information
symbiogenesis authored Oct 24, 2024
2 parents 4ccd7d0 + 804bcca commit 4f075fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Maui.DataGrid/DataGrid.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<local:DataGridHeaderRow Grid.Row="0" x:Name="_headerRow" DataGrid="{Reference self}" HeightRequest="{Binding HeaderHeight, Source={Reference self}}" />
<RefreshView Grid.Row="1" x:Name="_refreshView" Grid.RowSpan="2" Command="{Binding PullToRefreshCommand, Source={Reference self}}" CommandParameter="{Binding PullToRefreshCommandParameter, Source={Reference self}}"
<RefreshView Grid.Row="1" x:Name="_refreshView" Command="{Binding PullToRefreshCommand, Source={Reference self}}" CommandParameter="{Binding PullToRefreshCommandParameter, Source={Reference self}}"
RefreshColor="{Binding RefreshColor, Source={Reference self}}" IsRefreshing="{Binding IsRefreshing, Source={Reference self}, Mode=TwoWay}" IsEnabled="{Binding RefreshingEnabled, Source={Reference self}}">
<CollectionView
x:Name="_collectionView"
Expand Down

0 comments on commit 4f075fe

Please sign in to comment.