We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f5f23d9 + 4ded458 commit 8f8636aCopy full SHA for 8f8636a
Flow.Launcher/Notification.cs
@@ -11,8 +11,8 @@ internal static class Notification
11
[System.Diagnostics.CodeAnalysis.SuppressMessage("Interoperability", "CA1416:Validate platform compatibility", Justification = "<Pending>")]
12
public static void Show(string title, string subTitle, string iconPath)
13
{
14
- var legacy = Environment.OSVersion.Version.Major < 10;
15
- // Handle notification for win7/8
+ var legacy = Environment.OSVersion.Version.Build < 19041;
+ // Handle notification for win7/8/early win10
16
if (legacy)
17
18
LegacyShow(title, subTitle, iconPath);
0 commit comments