From 174e5554fc55f19b36b9fa3a3155d27ef918141d Mon Sep 17 00:00:00 2001 From: Dustin Mierau Date: Wed, 20 Dec 2023 12:37:29 -0800 Subject: 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. --- Hotline/macOS/FilesView.swift | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'Hotline/macOS/FilesView.swift') 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 -- cgit