Add clear log hotkey (Ctrl+L)
This commit is contained in:
parent
ba7915057d
commit
be8dfaeeb4
|
|
@ -112,6 +112,7 @@ void LogView::setupContextMenu()
|
|||
|
||||
void LogView::refreshShortcutsSlot()
|
||||
{
|
||||
actionClear->setShortcut(ConfigShortcut("ActionClear"));
|
||||
actionCopy->setShortcut(ConfigShortcut("ActionCopy"));
|
||||
actionToggleLogging->setShortcut(ConfigShortcut("ActionToggleLogging"));
|
||||
actionRedirectLog->setShortcut(ConfigShortcut("ActionRedirectLog"));
|
||||
|
|
|
|||
|
|
@ -560,6 +560,7 @@ Configuration::Configuration() : QObject(), noMoreMsgbox(false)
|
|||
defaultShortcuts.insert("ActionZeroRegister", Shortcut({tr("Actions"), tr("Zero Register")}, "0"));
|
||||
defaultShortcuts.insert("ActionSetOneRegister", Shortcut({tr("Actions"), tr("Set Register to One")}, "1"));
|
||||
defaultShortcuts.insert("ActionToggleRegisterValue", Shortcut({tr("Actions"), tr("Toggle Register Value")}, "Space"));
|
||||
defaultShortcuts.insert("ActionClear", Shortcut({tr("Actions"), tr("Clear")}, "Ctrl+L"));
|
||||
defaultShortcuts.insert("ActionCopy", Shortcut({tr("Actions"), tr("Copy")}, "Ctrl+C"));
|
||||
defaultShortcuts.insert("ActionCopyAddress", Shortcut({tr("Actions"), tr("Copy Address")}, "Alt+INS"));
|
||||
defaultShortcuts.insert("ActionCopyRva", Shortcut({tr("Actions"), tr("Copy RVA")}, ""));
|
||||
|
|
|
|||
Loading…
Reference in New Issue