fix: Remove unused capture

This commit is contained in:
WerWolv
2025-08-15 21:28:31 +02:00
parent 1f1d127822
commit 18e6a5d6d2

View File

@@ -14,7 +14,7 @@ namespace hex::plugin::builtin {
ViewCommandPalette::ViewCommandPalette() : View::Special("hex.builtin.view.command_palette.name") {
// Add global shortcut to open the command palette
ShortcutManager::addGlobalShortcut(CTRLCMD + SHIFT + Keys::P, "hex.builtin.view.command_palette.name", [this] {
ShortcutManager::addGlobalShortcut(CTRLCMD + SHIFT + Keys::P, "hex.builtin.view.command_palette.name", [] {
RequestOpenCommandPalette::post();
});