Skip to content

Commit 4f82999

Browse files
committed
Fix: Fixed issue where scrollbar wasn't visible when reordering pinned favorites (#12609)
1 parent 3904bfd commit 4f82999

File tree

1 file changed

+2
-16
lines changed

1 file changed

+2
-16
lines changed

src/Files.App/Dialogs/ReorderSidebarItemsDialog.xaml

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,8 @@
1717
Style="{StaticResource DefaultContentDialogStyle}"
1818
mc:Ignorable="d">
1919

20-
<Grid
21-
x:Name="DestinationPathGrid"
22-
ColumnSpacing="8"
23-
RowSpacing="8">
24-
<Grid.ColumnDefinitions>
25-
<ColumnDefinition />
26-
<ColumnDefinition Width="Auto" />
27-
</Grid.ColumnDefinitions>
28-
<Grid.RowDefinitions>
29-
<RowDefinition Height="Auto" />
30-
</Grid.RowDefinitions>
31-
32-
<ListView
33-
x:Name="SidebarNavView"
34-
Grid.Row="1"
35-
ItemsSource="{x:Bind ViewModel.SidebarFavoriteItems, Mode=OneWay}">
20+
<Grid x:Name="DestinationPathGrid">
21+
<ListView x:Name="SidebarNavView" ItemsSource="{x:Bind ViewModel.SidebarFavoriteItems, Mode=OneWay}">
3622
<ListView.ItemTemplate>
3723
<DataTemplate x:DataType="dataitems:LocationItem">
3824
<Grid

0 commit comments

Comments
 (0)