We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c755333 commit 6f2a166Copy full SHA for 6f2a166
1 file changed
src/windows.vbs
@@ -32,7 +32,9 @@ sub createFile()
32
objLink.WorkingDirectory = strCwd
33
objLink.IconLocation = strIcon
34
objLink.WindowStyle = strWindowMode
35
- objLink.Hotkey = strHotkey
+ If Trim(strHotkey) <> "" Then
36
+ objLink.Hotkey = strHotkey
37
+ End If
38
objLink.Save
39
end sub
40
0 commit comments