1
0
mirror of synced 2024-11-24 15:50:16 +01:00

feat: Add Ctrl+Shift+Z Redo shortcut (#787)

This commit is contained in:
iTrooz_ 2022-10-17 13:28:05 +02:00 committed by GitHub
parent 8c96ba1c58
commit 08251eeab7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1532,6 +1532,10 @@ namespace hex::plugin::builtin {
if (ImHexApi::Provider::isValid())
ImHexApi::Provider::get()->redo();
});
ShortcutManager::addShortcut(this, CTRL + SHIFT + Keys::Z, [] {
if (ImHexApi::Provider::isValid())
ImHexApi::Provider::get()->redo();
});
}
void ViewHexEditor::registerEvents() {