Skip to content

Commit

Permalink
Fixed wrong pane corner radiuses (GeneralPage)
Browse files Browse the repository at this point in the history
  • Loading branch information
KimihikoAkayasaki committed Oct 7, 2022
1 parent 90f3a21 commit 1f96692
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Amethyst/GeneralPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<SplitView Canvas.ZIndex="1" x:Name="OffsetsView"
PaneBackground="{ThemeResource SystemControlBackgroundChromeMediumLowBrush}"
PaneClosing="OffsetsView_PaneClosing" IsPaneOpen="False" OpenPaneLength="520"
CompactPaneLength="0" DisplayMode="Inline" CornerRadius="10">
CompactPaneLength="0" DisplayMode="Inline" CornerRadius="10,0,0,0">
<SplitView.Pane>

<Grid Margin="40,10" x:Name="OffsetsControlHostGrid">
Expand Down Expand Up @@ -59,7 +59,7 @@
<SplitView Canvas.ZIndex="1" x:Name="CalibrationDeviceSelectView"
PaneBackground="{ThemeResource SystemControlBackgroundChromeMediumLowBrush}"
PaneClosing="CalibrationDeviceSelectView_PaneClosing" IsPaneOpen="False" OpenPaneLength="520"
CompactPaneLength="0" DisplayMode="Inline" CornerRadius="10">
CompactPaneLength="0" DisplayMode="Inline" CornerRadius="10,0,0,0">
<SplitView.Pane>
<Grid>
<Grid x:Name="DeviceSelectionPane">
Expand Down Expand Up @@ -519,7 +519,7 @@
<SplitView Canvas.ZIndex="2" x:Name="CalibrationModeSelectView"
PaneBackground="{ThemeResource SystemControlBackgroundChromeMediumLowBrush}"
PaneClosing="CalibrationModeSelectView_PaneClosing" IsPaneOpen="False" OpenPaneLength="520"
CompactPaneLength="0" DisplayMode="Inline" CornerRadius="10">
CompactPaneLength="0" DisplayMode="Inline" CornerRadius="10,0,0,0">
<SplitView.Pane>
<Grid>
<Grid x:Name="CalibrationSelectionPane">
Expand Down Expand Up @@ -617,7 +617,7 @@
<SplitView Canvas.ZIndex="3" x:Name="CalibrationRunningView"
PaneBackground="{ThemeResource SystemControlBackgroundChromeMediumLowBrush}"
PaneClosing="CalibrationRunningView_PaneClosing" IsPaneOpen="False" OpenPaneLength="520"
CompactPaneLength="0" DisplayMode="Inline" CornerRadius="10">
CompactPaneLength="0" DisplayMode="Inline" CornerRadius="10,0,0,0">
<SplitView.Pane>
<Grid>
<Grid x:Name="AutoCalibrationPane">
Expand Down

0 comments on commit 1f96692

Please sign in to comment.