Skip to content

Commit

Permalink
Fixed positioning of footer items in NavigationView (left) when Setti…
Browse files Browse the repository at this point in the history
…ngs button is enabled (#388)
  • Loading branch information
RibShark authored Jun 18, 2022
1 parent 24789fa commit f2180de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ModernWpf.Controls/NavigationView/NavigationView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -1274,7 +1274,7 @@
<RowDefinition x:Name="MenuItemsRow" Height="Auto" MinHeight="{DynamicResource NavigationViewItemOnLeftMinHeight}"/> <!-- MenuItems -->
<RowDefinition Height="*" MinHeight="21"/> <!-- Fill spacing -->
<RowDefinition Height="Auto" /> <!-- PaneFooter -->
<RowDefinition x:Name="FooterItemsRow" Height="Auto" MinHeight="{DynamicResource NavigationViewItemOnLeftMinHeight}"/> <!-- FooterItems -->
<RowDefinition x:Name="FooterItemsRow" Height="Auto"/> <!-- FooterItems -->
</Grid.RowDefinitions>

<!-- MenuItems -->
Expand Down Expand Up @@ -1308,7 +1308,7 @@
<ScrollViewer x:Name="FooterItemsScrollViewer">
<!-- contract7Present:VerticalAnchorRatio="1" -->
<local:ItemsRepeater
x:Name="FooterMenuItemsHost"/>
x:Name="FooterMenuItemsHost" VerticalAlignment="Bottom"/>
</ScrollViewer>
</local:ItemsRepeaterScrollHost>
</Grid>
Expand Down

0 comments on commit f2180de

Please sign in to comment.