Skip to content

Commit

Permalink
Fix shortcuts not working until shortcut settings popup is closed
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoooi0 committed Feb 28, 2024
1 parent c48c750 commit 82a542a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/MultiFunPlayer/Shortcut/IShortcutManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ internal sealed class ShortcutManager : IShortcutManager
private readonly Dictionary<string, IShortcutActionConfigurationBuilder> _actionConfigurationBuilders;
private readonly ObservableConcurrentCollection<IShortcut> _shortcuts;

public bool HandleGestures { get; set; }
public bool HandleGestures { get; set; } = true;
public IReadOnlyObservableConcurrentCollection<string> AvailableActions => _availableActions;
public IReadOnlyObservableConcurrentCollection<IShortcut> Shortcuts => _shortcuts;

Expand Down

0 comments on commit 82a542a

Please sign in to comment.