Skip to content

Commit e94e394

Browse files
committed
Fixed keybinds being disabled by defaut
1 parent ac98ff0 commit e94e394

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Sidekick.Common.Platform/Keyboards/KeyboardProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ public class KeyboardProvider
167167

168168
public HashSet<string?> UsedKeybinds => [.. KeybindHandlers.SelectMany(k => k.Keybinds)];
169169

170-
private bool Enabled { get; set; }
170+
private bool Enabled { get; set; } = true;
171171

172172
/// <inheritdoc/>
173173
public int Priority => 100;

0 commit comments

Comments
 (0)