Skip to content

Commit d497150

Browse files
authored
i1 (#4728)
1 parent c80132a commit d497150

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/MUXControlsTestApp/MainPage.xaml.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ public List<Tuple<ApplicationHighContrastAdjustment, string>> AppHighContrastAdj
117117
{
118118
get;
119119
} = new List<Tuple<ApplicationHighContrastAdjustment, string>> {
120-
new Tuple<ApplicationHighContrastAdjustment, string>(ApplicationHighContrastAdjustment.Auto, "Auto (unaware)"),
121-
new Tuple<ApplicationHighContrastAdjustment, string>(ApplicationHighContrastAdjustment.None, "None (high-contrast aware)") };
120+
new Tuple<ApplicationHighContrastAdjustment, string>(ApplicationHighContrastAdjustment.None, "None (high-contrast aware)"),
121+
new Tuple<ApplicationHighContrastAdjustment, string>(ApplicationHighContrastAdjustment.Auto, "Auto (unaware)") };
122122

123123
public MainPage()
124124
{
@@ -156,7 +156,7 @@ public MainPage()
156156
LanguageChooser.SelectedIndex = locales.IndexOf("en-US");
157157
LongAnimationsDisabled.IsChecked = MUXControlsTestApp.App.DisableLongAnimations;
158158
FlowDirectionChooser.SelectedIndex = FlowDirections.IndexOf(GetRootFlowDirection());
159-
AppHighContrastAdjustmentChooser.SelectedIndex = AppHighContrastAdjustments.FindIndex(a => a.Item1 == ApplicationHighContrastAdjustment.Auto); // default to unaware
159+
AppHighContrastAdjustmentChooser.SelectedIndex = AppHighContrastAdjustments.FindIndex(a => a.Item1 == ApplicationHighContrastAdjustment.None); // default to aware
160160

161161
// App remembers ExtendViewIntoTitleBar and the value persists true if test case aborted and didn't change it back
162162
// Always set it to false when app restarted

0 commit comments

Comments
 (0)