Skip to content

Commit

Permalink
Merge pull request #17972 from peppy/hotfix-context-menu
Browse files Browse the repository at this point in the history
Fix windows taskbar context menu not popping up correctly
  • Loading branch information
smoogipoo authored Apr 26, 2022
2 parents 9911584 + 7e9d51f commit 9d198ad
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion osu.Desktop/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,12 @@ private static void setupSquirrel()
tools.RemoveUninstallerRegistryEntry();
}, onEveryRun: (version, tools, firstRun) =>
{
tools.SetProcessAppUserModelId();
// While setting the `ProcessAppUserModelId` fixes duplicate icons/shortcuts on the taskbar, it currently
// causes the right-click context menu to function incorrectly.
//
// This may turn out to be non-required after an alternative solution is implemented.
// see https://github.com/clowd/Clowd.Squirrel/issues/24
// tools.SetProcessAppUserModelId();
});
}

Expand Down

0 comments on commit 9d198ad

Please sign in to comment.