Skip to content

Commit f2180de

Browse files
authored
Fixed positioning of footer items in NavigationView (left) when Settings button is enabled (#388)
1 parent 24789fa commit f2180de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ModernWpf.Controls/NavigationView/NavigationView.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1274,7 +1274,7 @@
12741274
<RowDefinition x:Name="MenuItemsRow" Height="Auto" MinHeight="{DynamicResource NavigationViewItemOnLeftMinHeight}"/> <!-- MenuItems -->
12751275
<RowDefinition Height="*" MinHeight="21"/> <!-- Fill spacing -->
12761276
<RowDefinition Height="Auto" /> <!-- PaneFooter -->
1277-
<RowDefinition x:Name="FooterItemsRow" Height="Auto" MinHeight="{DynamicResource NavigationViewItemOnLeftMinHeight}"/> <!-- FooterItems -->
1277+
<RowDefinition x:Name="FooterItemsRow" Height="Auto"/> <!-- FooterItems -->
12781278
</Grid.RowDefinitions>
12791279

12801280
<!-- MenuItems -->
@@ -1308,7 +1308,7 @@
13081308
<ScrollViewer x:Name="FooterItemsScrollViewer">
13091309
<!-- contract7Present:VerticalAnchorRatio="1" -->
13101310
<local:ItemsRepeater
1311-
x:Name="FooterMenuItemsHost"/>
1311+
x:Name="FooterMenuItemsHost" VerticalAlignment="Bottom"/>
13121312
</ScrollViewer>
13131313
</local:ItemsRepeaterScrollHost>
13141314
</Grid>

0 commit comments

Comments
 (0)