Skip to content

Commit bef5b29

Browse files
authored
Fixed an issue where opening the properties window would sometimes crash the app on 1903/1909 (#1850)
1 parent 67aee2a commit bef5b29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Files/Views/Pages/Properties.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ await Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
9191
TintColor = AppSettings.AcrylicTheme.TintColor,
9292
TintOpacity = AppSettings.AcrylicTheme.TintOpacity,
9393
};
94-
if (ApiInformation.IsApiContractPresent("Windows.Foundation.UniversalApiContract", 8))
94+
if (ApiInformation.IsApiContractPresent("Windows.Foundation.UniversalApiContract", 9))
9595
{
9696
backgroundBrush.TintLuminosityOpacity = 0.9;
9797
}

0 commit comments

Comments
 (0)