feture(key) add ability to extract archives with Alt + F9

This commit is contained in:
coderaiser 2017-09-04 10:02:19 +03:00
parent 3a4ace4041
commit ff31fcbae6
2 changed files with 5 additions and 1 deletions

View file

@ -142,6 +142,7 @@ Hot keys
| `F8`, `Delete` | remove
| `Shift + Delete` | remove without prompt
| `F9` | menu
| `Alt` + `F9` | extract
| `F10` | config
| `*` | select/unselect all
| `+` | expand selection

View file

@ -343,7 +343,10 @@ function KeyProto() {
break;
case Key.F9:
CloudCmd.Menu.show();
if (alt)
Operation.show('extract');
else
CloudCmd.Menu.show();
event.preventDefault();
break;