aboutsummaryrefslogtreecommitdiff
path: root/Hotline/macOS/FilesView.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Hotline/macOS/FilesView.swift')
-rw-r--r--Hotline/macOS/FilesView.swift3
1 files changed, 2 insertions, 1 deletions
diff --git a/Hotline/macOS/FilesView.swift b/Hotline/macOS/FilesView.swift
index f698b5d..133e1fd 100644
--- a/Hotline/macOS/FilesView.swift
+++ b/Hotline/macOS/FilesView.swift
@@ -38,7 +38,8 @@ struct FileView: View {
Image(systemName: "questionmark.app.fill").opacity(0.5)
}
else if file.isFolder {
- Image(systemName: "folder.fill")
+ FolderIconView()
+ .frame(width: 16, height: 16)
}
else {
FileIconView(filename: file.name)