Skip to content

Commit

Permalink
i1 (#4728)
Browse files Browse the repository at this point in the history
  • Loading branch information
marksfoster authored Apr 3, 2021
1 parent c80132a commit d497150
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/MUXControlsTestApp/MainPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ public List<Tuple<ApplicationHighContrastAdjustment, string>> AppHighContrastAdj
{
get;
} = new List<Tuple<ApplicationHighContrastAdjustment, string>> {
new Tuple<ApplicationHighContrastAdjustment, string>(ApplicationHighContrastAdjustment.Auto, "Auto (unaware)"),
new Tuple<ApplicationHighContrastAdjustment, string>(ApplicationHighContrastAdjustment.None, "None (high-contrast aware)") };
new Tuple<ApplicationHighContrastAdjustment, string>(ApplicationHighContrastAdjustment.None, "None (high-contrast aware)"),
new Tuple<ApplicationHighContrastAdjustment, string>(ApplicationHighContrastAdjustment.Auto, "Auto (unaware)") };

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

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

0 comments on commit d497150

Please sign in to comment.