sys: Added CTRL + A to select all bytes in hex view
This commit is contained in:
parent
53c8f6ec74
commit
639ae7be4d
@ -575,6 +575,9 @@ namespace hex {
|
||||
} else if (ctrl && keys['V']) {
|
||||
this->pasteBytes();
|
||||
return true;
|
||||
} else if (ctrl && keys['A']) {
|
||||
EventManager::post<RequestSelectionChange>(Region { SharedData::currentProvider->getBaseAddress(), SharedData::currentProvider->getSize() });
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user