Skip to content

Commit 9debee6

Browse files
authored
Fix: Fixed issue where the sidebar scrollbar wasn't clickable (#11387)
1 parent df3dfcd commit 9debee6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Files.App/UserControls/SidebarControl.xaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,8 @@
367367
<CompositeTransform x:Name="PaneTransform" />
368368
</Grid.RenderTransform>
369369

370-
<Border Child="{TemplateBinding Pane}" />
370+
<!-- Margin enables users to grab the scrollbar -->
371+
<Border Padding="2" Child="{TemplateBinding Pane}" />
371372

372373
<Rectangle
373374
x:Name="HCPaneBorder"
@@ -384,7 +385,7 @@
384385
Grid.Row="0"
385386
Grid.RowSpan="2"
386387
Grid.Column="{Binding ElementName=PaneRoot, Path=(Grid.Column), Mode=OneWay}"
387-
Width="8"
388+
Width="4"
388389
HorizontalAlignment="Right"
389390
AllowFocusOnInteraction="True"
390391
Background="Transparent"

0 commit comments

Comments
 (0)