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
3 changes: 2 additions & 1 deletion src/LibFileTools.bas
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ Public Function BrowseForFolder(Optional ByRef initialPath As String _
Dir initialPath, Attributes:=vbDirectory
End If
Dim retPath
If LenB(dialogTitle) = 0 Then dialogTitle = "Choose Foldler"
If LenB(dialogTitle) = 0 Then dialogTitle = "Choose Folder"
retPath = MacScript("choose folder with prompt """ & dialogTitle & """ as string")
If Len(retPath) > 0 Then
retPath = MacScript("POSIX path of """ & retPath & """")
Expand Down Expand Up @@ -3593,3 +3593,4 @@ Public Function GetMainBusinessURLs() As Collection
Next i
Set GetMainBusinessURLs = res
End Function