Skip to content

Commit be2db42

Browse files
authored
Fix: Fixed alignment of the add tab button (#15194)
1 parent 8600d0d commit be2db42

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/Files.App/Views/MainPage.xaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,13 +142,14 @@
142142
TabStripVisibility="Visible"
143143
Visibility="Visible">
144144
<tabbar:TabBar.FooterElement>
145+
<!-- Height is not divisble by four in order to properly align the button -->
145146
<Button
146147
x:Name="HorizontalMultitaskingControlAddButton"
147-
Width="32"
148-
Height="32"
148+
Width="30"
149+
Height="30"
149150
Padding="8"
150151
HorizontalAlignment="Left"
151-
VerticalAlignment="Bottom"
152+
VerticalAlignment="Center"
152153
AllowDrop="True"
153154
AutomationProperties.Name="{x:Bind Commands.NewTab.AutomationName}"
154155
Background="Transparent"

0 commit comments

Comments
 (0)