Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/windows.vbs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ sub createFile()
objLink.WorkingDirectory = strCwd
objLink.IconLocation = strIcon
objLink.WindowStyle = strWindowMode
objLink.Hotkey = strHotkey
' We must skip setting the hotkey if the trimmed value is an empty string to avoid errors (#96).
If Trim(strHotkey) <> "" Then
Comment thread
TheJaredWilcurt marked this conversation as resolved.
objLink.Hotkey = strHotkey
End If
objLink.Save
end sub

Expand Down