Skip to content

Commit bcbf2fa

Browse files
authored
Fix: Fixed icon size in the Layout flyout (#12958)
1 parent b72e2b1 commit bcbf2fa

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/Files.App/UserControls/InnerNavigationToolbar.xaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -646,8 +646,8 @@
646646
Style="{StaticResource DefaultToggleButtonStyle}"
647647
ToolTipService.ToolTip="{x:Bind Commands.LayoutDetails.LabelWithHotKey, Mode=OneWay}">
648648
<local:OpacityIcon
649-
Width="20"
650-
Height="20"
649+
Width="16"
650+
Height="16"
651651
IsSelected="{x:Bind Commands.LayoutDetails.IsOn, Mode=OneWay}"
652652
Style="{x:Bind Commands.LayoutDetails.OpacityStyle}" />
653653
</RadioButton>
@@ -678,8 +678,8 @@
678678
Style="{StaticResource DefaultToggleButtonStyle}"
679679
ToolTipService.ToolTip="{x:Bind Commands.LayoutColumns.LabelWithHotKey, Mode=OneWay}">
680680
<local:OpacityIcon
681-
Width="20"
682-
Height="20"
681+
Width="16"
682+
Height="16"
683683
IsSelected="{x:Bind Commands.LayoutColumns.IsOn, Mode=OneWay}"
684684
Style="{x:Bind Commands.LayoutColumns.OpacityStyle}" />
685685
</RadioButton>
@@ -710,8 +710,8 @@
710710
Style="{StaticResource DefaultToggleButtonStyle}"
711711
ToolTipService.ToolTip="{x:Bind Commands.LayoutTiles.LabelWithHotKey, Mode=OneWay}">
712712
<local:OpacityIcon
713-
Width="20"
714-
Height="20"
713+
Width="16"
714+
Height="16"
715715
IsSelected="{x:Bind Commands.LayoutTiles.IsOn, Mode=OneWay}"
716716
Style="{x:Bind Commands.LayoutTiles.OpacityStyle}" />
717717
</RadioButton>
@@ -742,8 +742,8 @@
742742
Style="{StaticResource DefaultToggleButtonStyle}"
743743
ToolTipService.ToolTip="{x:Bind Commands.LayoutGridSmall.LabelWithHotKey, Mode=OneWay}">
744744
<local:OpacityIcon
745-
Width="20"
746-
Height="20"
745+
Width="16"
746+
Height="16"
747747
IsSelected="{x:Bind Commands.LayoutGridSmall.IsOn, Mode=OneWay}"
748748
Style="{x:Bind Commands.LayoutGridSmall.OpacityStyle}" />
749749
</RadioButton>
@@ -774,8 +774,8 @@
774774
Style="{StaticResource DefaultToggleButtonStyle}"
775775
ToolTipService.ToolTip="{x:Bind Commands.LayoutGridMedium.LabelWithHotKey, Mode=OneWay}">
776776
<local:OpacityIcon
777-
Width="20"
778-
Height="20"
777+
Width="16"
778+
Height="16"
779779
IsSelected="{x:Bind Commands.LayoutGridMedium.IsOn, Mode=OneWay}"
780780
Style="{x:Bind Commands.LayoutGridMedium.OpacityStyle}" />
781781
</RadioButton>
@@ -816,8 +816,8 @@
816816
Style="{StaticResource DefaultToggleButtonStyle}"
817817
ToolTipService.ToolTip="{x:Bind Commands.LayoutGridLarge.LabelWithHotKey, Mode=OneWay}">
818818
<local:OpacityIcon
819-
Width="20"
820-
Height="20"
819+
Width="16"
820+
Height="16"
821821
IsSelected="{x:Bind Commands.LayoutGridLarge.IsOn, Mode=OneWay}"
822822
Style="{x:Bind Commands.LayoutGridLarge.OpacityStyle}" />
823823
</RadioButton>

0 commit comments

Comments
 (0)