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 7b48b7c commit d2b58b8Copy full SHA for d2b58b8
src/components/widgets/lively-window.js
@@ -495,7 +495,7 @@ export default class Window extends Morph {
495
496
onKeyUp(evt) {
497
var char = String.fromCharCode(evt.keyCode || evt.charCode);
498
- if ((evt.altKey || evt.ctrlKey) && char == "W") {
+ if ((evt.altKey) && char == "W") { // is this "evt.ctrlKey" used unter Mac? , it makes problems under Windows
499
this.onCloseButtonClicked(evt)
500
evt.preventDefault();
501
}
0 commit comments