Skip to content

Commit 8b556e1

Browse files
authored
Code Quality: Fixed an issue where the forward icon was wrongly clipped (#15490)
1 parent de9c374 commit 8b556e1

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/Files.App/Views/Shells/ModernShellPage.xaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,12 @@
5050
<ThemeShadow x:Name="ShellContentThemeShadow" x:FieldModifier="public" />
5151
</Grid.Shadow>
5252

53+
<!-- Swipe Backward Icon -->
5354
<Border
5455
x:Name="BackIcon"
5556
Width="48"
5657
Height="48"
57-
Margin="-1,0,0,0"
58+
Margin="-4,0,0,0"
5859
HorizontalAlignment="Left"
5960
VerticalAlignment="Center"
6061
wct:VisualExtensions.NormalizedCenterPoint="0.5,0.5"
@@ -70,11 +71,12 @@
7071
Glyph="&#xE72B;" />
7172
</Border>
7273

74+
<!-- Swipe Forward Icon -->
7375
<Border
7476
x:Name="ForwardIcon"
7577
Width="48"
7678
Height="48"
77-
Margin="1,0,0,0"
79+
Margin="0,0,-4,0"
7880
HorizontalAlignment="Right"
7981
VerticalAlignment="Center"
8082
wct:VisualExtensions.NormalizedCenterPoint="0.5,0.5"
@@ -90,6 +92,7 @@
9092
Symbol="Forward" />
9193
</Border>
9294

95+
<!-- Shell Frame -->
9396
<Frame
9497
x:Name="ItemDisplayFrame"
9598
x:FieldModifier="public"

0 commit comments

Comments
 (0)