We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8366b3b commit 64df81bCopy full SHA for 64df81b
client/listeners/index.js
@@ -112,8 +112,6 @@ module.exports.initKeysPanel = () => {
112
return;
113
114
Events.addClick(keysElement, (event) => {
115
- event.stopPropagation();
116
-
117
const {target} = event;
118
const {id} = target;
119
@@ -132,7 +130,10 @@ module.exports.initKeysPanel = () => {
132
130
'f6': operation('move'),
133
131
'f7': DOM.promptNewDir,
134
'f8': operation('delete'),
135
- 'f9': CloudCmd.Menu.show,
+ 'f9': () => {
+ event.stopPropagation();
+ CloudCmd.Menu.show();
136
+ },
137
'f10': CloudCmd.Config.show,
138
'~': CloudCmd.Konsole.show,
139
'shift~': CloudCmd.Terminal.show,
0 commit comments