Fix keyboard shortcut in VBS console

This commit is contained in:
~lucidiot 2022-09-22 22:14:19 +02:00
parent b6c37554ab
commit 2b81593ad6
1 changed files with 5 additions and 1 deletions

View File

@ -101,7 +101,11 @@ Private Sub Run
End Sub
Private Sub InputKeyPress
If window.event.keyCode = 13 And window.event.shiftKey Then Run
If window.event.keyCode = 13 And window.event.shiftKey Then
window.event.cancelBubble = True
window.event.returnValue = False
Run
End If
End Sub
'Auto-detect the wizard's browser extensions