mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Test legacy show on win 11
This commit is contained in:
parent
8637c03bda
commit
c251a276a7
1 changed files with 8 additions and 0 deletions
|
|
@ -36,6 +36,14 @@ namespace Flow.Launcher
|
||||||
LegacyShow(title, subTitle, iconPath);
|
LegacyShow(title, subTitle, iconPath);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Test LegacyShow() usability on win 11 22621
|
||||||
|
// REMOVE BEFORE MERGING
|
||||||
|
if (Environment.OSVersion.Version.Build >= 22621)
|
||||||
|
{
|
||||||
|
LegacyShow(title, subTitle, iconPath);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Using Windows Notification System
|
// Using Windows Notification System
|
||||||
var Icon = !File.Exists(iconPath)
|
var Icon = !File.Exists(iconPath)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue