Skip to content
Merged
Changes from 1 commit
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
4 changes: 3 additions & 1 deletion src/windows.vbs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ sub createFile()
objLink.WorkingDirectory = strCwd
objLink.IconLocation = strIcon
objLink.WindowStyle = strWindowMode
objLink.Hotkey = strHotkey
If Trim(strHotkey) <> "" Then
Comment thread
TheJaredWilcurt marked this conversation as resolved.
objLink.Hotkey = strHotkey
End If
objLink.Save
end sub

Expand Down