diff options
| author | Dustin Mierau <dustin@mierau.me> | 2024-05-13 11:59:41 -0700 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2024-05-13 11:59:41 -0700 |
| commit | 67050d06a3bc2d28e969cf1388eafa95400c35a3 (patch) | |
| tree | a866c6b5684d54d7dd7427902780679ce476092a /Hotline/macOS/FilesView.swift | |
| parent | 6f166f0f12aab78fb0ab69cca386c8d8450cd9cc (diff) | |
Make News toolbar buttons disable contextually. Use Finder folder icon in Files list.
Diffstat (limited to 'Hotline/macOS/FilesView.swift')
| -rw-r--r-- | Hotline/macOS/FilesView.swift | 3 |
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) |