diff options
| author | Dustin Mierau <dustin@mierau.me> | 2023-12-20 12:37:29 -0800 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2023-12-20 12:37:29 -0800 |
| commit | 174e5554fc55f19b36b9fa3a3155d27ef918141d (patch) | |
| tree | a4b4e009a284da8c8739d9a64638d5f3dafcd64f /Hotline/macOS/FilesView.swift | |
| parent | f58b0da88077b3129c2321b4af82b807c6d38ebf (diff) | |
Tracker window now allows for bookmarks and multiple trackers like the original Hotline client. You still can't add servers or trackers, but support is there. Also removed title from message reader view on macOS.
Diffstat (limited to 'Hotline/macOS/FilesView.swift')
| -rw-r--r-- | Hotline/macOS/FilesView.swift | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Hotline/macOS/FilesView.swift b/Hotline/macOS/FilesView.swift index 534dd10..8482dd9 100644 --- a/Hotline/macOS/FilesView.swift +++ b/Hotline/macOS/FilesView.swift @@ -1,16 +1,6 @@ import SwiftUI import UniformTypeIdentifiers -@Observable -class FileSelection: Equatable { - var selectedFile: FileInfo? = nil - - static func == (lhs: FileSelection, rhs: FileSelection) -> Bool { - return lhs.selectedFile == rhs.selectedFile - } -} - - struct FileView: View { @Environment(Hotline.self) private var model: Hotline |