diff options
| author | Dustin Mierau <dustin@mierau.me> | 2024-07-29 19:07:47 -0700 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2024-07-29 19:07:47 -0700 |
| commit | c6996c3ac262616198e94197d1c6b310d44508ee (patch) | |
| tree | 6a4a3e98b7a2449a3d200bb5f4cc1c3c8b92b4ad /Hotline/macOS/FilePreviewImageView.swift | |
| parent | 5726ab32f161e4b62ee0d65303b76d9894769c92 (diff) | |
Add drag and drop suppport for files to upload. Tighten up spacing on heirarchical lists. Add some extra HFS type to UTType conversion. Update to latest packages.
Diffstat (limited to 'Hotline/macOS/FilePreviewImageView.swift')
| -rw-r--r-- | Hotline/macOS/FilePreviewImageView.swift | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Hotline/macOS/FilePreviewImageView.swift b/Hotline/macOS/FilePreviewImageView.swift index b8ad37b..9beeb80 100644 --- a/Hotline/macOS/FilePreviewImageView.swift +++ b/Hotline/macOS/FilePreviewImageView.swift @@ -69,7 +69,7 @@ struct FilePreviewImageView: View { .background(.black) .toolbar { ToolbarItem(placement: .navigation) { - FileIconView(filename: info?.name ?? "") + FileIconView(filename: info?.name ?? "", fileType: nil) .frame(width: 16, height: 16) .opacity(controlActiveState == .inactive ? 0.5 : 1.0) } |