diff options
| author | Dustin Mierau <dustin@mierau.me> | 2024-05-02 18:53:56 -0700 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2024-05-02 18:53:56 -0700 |
| commit | 73208d70d21db7e526e371fa863acd0327caad9e (patch) | |
| tree | a93bed8633077e77a576e65f14244c82a32868bb /Hotline/macOS/FilePreviewImageView.swift | |
| parent | 480500a3e7cfe1e2aa8ff261ca6f9e522c3aaf4c (diff) | |
Add link highlighting to agreements and message board. Add basic markdown styling and link highlighting to chat messages.
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 461f5a4..ae9a825 100644 --- a/Hotline/macOS/FilePreviewImageView.swift +++ b/Hotline/macOS/FilePreviewImageView.swift @@ -31,7 +31,7 @@ struct FilePreviewImageView: View { } else { if let image = preview?.image { - AnimatedImageView(image: image) + FileImageView(image: image) .frame(minWidth: 200, maxWidth: .infinity, minHeight: 200, maxHeight: .infinity) } else { |