Skip to content

Commit

Permalink
Merge pull request #773 from jdrames/main
Browse files Browse the repository at this point in the history
Fix clipping of menu items when using Navigation LeftFluent
  • Loading branch information
pomianowski authored Oct 9, 2023
2 parents 077389f + 12d5363 commit e67fe1e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Wpf.Ui/Controls/NavigationView/NavigationLeftFluent.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<Grid
x:Name="ContentGrid"
Grid.Row="1"
Height="15"
Height="{StaticResource NavigationViewFluentIconSize}"
Margin="0,2,0,0">
<ContentPresenter
x:Name="ElementContentPresenter"
Expand Down Expand Up @@ -82,7 +82,7 @@
<DoubleAnimation
Storyboard.TargetName="ContentGrid"
Storyboard.TargetProperty="Height"
From="15"
From="{StaticResource NavigationViewFluentIconSize}"
To="0"
Duration="0:0:.16" />
<DoubleAnimation
Expand All @@ -107,7 +107,7 @@
Storyboard.TargetName="ContentGrid"
Storyboard.TargetProperty="Height"
From="0"
To="15"
To="{StaticResource NavigationViewFluentIconSize}"
Duration="0:0:.16" />
<DoubleAnimation
Storyboard.TargetName="ContentGrid"
Expand Down

0 comments on commit e67fe1e

Please sign in to comment.