Skip to content

Commit 58aae8f

Browse files
committed
fix issue where search unindexed items button is displayed on left side
1 parent 251adc9 commit 58aae8f

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Files/Views/LayoutModes/DetailsLayoutBrowser.xaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -753,18 +753,26 @@
753753
VerticalScrollMode="{TemplateBinding ScrollViewer.VerticalScrollMode}"
754754
ZoomMode="{TemplateBinding ScrollViewer.ZoomMode}">
755755
<Grid>
756+
<Grid.RowDefinitions>
757+
<RowDefinition Height="*" />
758+
<RowDefinition Height="Auto" />
759+
</Grid.RowDefinitions>
756760
<Grid.ColumnDefinitions>
757761
<ColumnDefinition Width="Auto" />
758762
<ColumnDefinition Width="*" MinWidth="24" />
759763
</Grid.ColumnDefinitions>
760764
<ItemsPresenter
761765
Padding="{TemplateBinding Padding}"
762766
HorizontalAlignment="Stretch"
763-
Footer="{TemplateBinding Footer}"
764767
FooterTemplate="{TemplateBinding FooterTemplate}"
765768
FooterTransitions="{TemplateBinding FooterTransitions}"
766769
HeaderTemplate="{TemplateBinding HeaderTemplate}"
767770
HeaderTransitions="{TemplateBinding HeaderTransitions}" />
771+
772+
<ContentPresenter
773+
Grid.Row="1"
774+
Padding="8,0,8,8"
775+
Content="{TemplateBinding Footer}" />
768776
</Grid>
769777
</ScrollViewer>
770778
</Grid>

0 commit comments

Comments
 (0)