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; } } }