From 639ae7be4d768a0fa985ea707feccc525f7e82ff Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sun, 6 Jun 2021 17:33:14 +0200 Subject: [PATCH] sys: Added CTRL + A to select all bytes in hex view --- source/views/view_hexeditor.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/views/view_hexeditor.cpp b/source/views/view_hexeditor.cpp index e9561e382..e25ba3927 100644 --- a/source/views/view_hexeditor.cpp +++ b/source/views/view_hexeditor.cpp @@ -575,6 +575,9 @@ namespace hex { } else if (ctrl && keys['V']) { this->pasteBytes(); return true; + } else if (ctrl && keys['A']) { + EventManager::post(Region { SharedData::currentProvider->getBaseAddress(), SharedData::currentProvider->getSize() }); + return true; } } }