27 lines
538 B
Swift
27 lines
538 B
Swift
//
|
|
// BackgroundView.swift
|
|
// PrivadoVPN
|
|
//
|
|
// Created by Juraldinio on 7/1/21.
|
|
// Copyright © 2021 Privado LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
final class BackgroundView: NSView {
|
|
|
|
convenience init(with color: NSColor) {
|
|
self.init(frame: .zero)
|
|
|
|
self.translatesAutoresizingMaskIntoConstraints = false
|
|
self.wantsLayer = true
|
|
|
|
self.viewBackgroundColor = color
|
|
}
|
|
|
|
override func mouseDown(with event: NSEvent) {
|
|
// do nothing
|
|
}
|
|
|
|
}
|