Skip to content

Commit

Permalink
fix(Profile::Trigger): Fix not calling the method in switch
Browse files Browse the repository at this point in the history
  • Loading branch information
Belphemur committed Apr 17, 2021
1 parent e3ac089 commit 4b75a25
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -10,7 +10,7 @@ public static class TriggerEnumExtensions
/// <exception cref="ArgumentOutOfRangeException"></exception>
public static void Switch(this TriggerFactory.Enum @enum, Action hotkey, Action window, Action process, Action steam, Action startup, Action uwpApp, Action trayMenu)
{
Match(@enum, () => hotkey, () => window, () => process, () => steam, () => startup, () => uwpApp, () => trayMenu);
Match(@enum, () => hotkey, () => window, () => process, () => steam, () => startup, () => uwpApp, () => trayMenu)();
}

/// <summary>
Expand Down

0 comments on commit 4b75a25

Please sign in to comment.