Skip to content

Commit

Permalink
Fixed hide and settings button corner radius
Browse files Browse the repository at this point in the history
  • Loading branch information
ShankarBUS committed Jul 30, 2020
1 parent e69f902 commit 3ff8986
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ModernFlyouts/FlyoutWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
</Grid.ColumnDefinitions>

<Button x:Name="SettingsButton" Grid.Column="0" VerticalAlignment="Top" HorizontalAlignment="Left"
ui:ControlHelper.CornerRadius="4,2,2,4"
ui:ControlHelper.CornerRadius="8,2,2,8"
Width="32" Padding="0" Height="32" Background="Transparent" ToolTip="Settings" Click="settingsItem_Click">
<ui:FontIcon Glyph="{x:Static util:CommonGlyphs.Setting}" FontSize="16"/>
</Button>
Expand All @@ -97,7 +97,7 @@
<Border Margin="10" BorderBrush="{DynamicResource SystemControlBackgroundBaseMediumBrush}" Opacity="0.2" BorderThickness="0, 1, 0, 1"/>
</Border>

<Button x:Name="HideFlyoutButton" Grid.Column="3" VerticalAlignment="Top" HorizontalAlignment="Right" ui:ControlHelper.CornerRadius="2,4,2,2"
<Button x:Name="HideFlyoutButton" Grid.Column="3" VerticalAlignment="Top" HorizontalAlignment="Right" ui:ControlHelper.CornerRadius="2,8,8,2"
Width="32" Padding="0" Height="32" Background="Transparent" ToolTip="Close">
<ui:FontIcon Glyph="{x:Static util:CommonGlyphs.Cancel}" FontSize="12"/>
</Button>
Expand Down

0 comments on commit 3ff8986

Please sign in to comment.