16 lines
298 B
Swift
16 lines
298 B
Swift
//
|
|
// ServerOutlineView.swift
|
|
// PrivadoVPN
|
|
//
|
|
// Created by Juraldinio on 4/29/21.
|
|
// Copyright © 2021 Privado LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
final class ServerOutlineView: NSOutlineView {
|
|
|
|
override func frameOfOutlineCell(atRow row: Int) -> NSRect { .zero }
|
|
|
|
}
|