CutBox.app

Coverage Report

Created: 2024-03-12 03:40

.../Source/App/Preferences/PreferencesWindow.swift
Line
Count
Source
1
//
2
//  PreferencesWindow.swift
3
//  CutBox
4
//
5
//  Created by Jason Milkins on 31/3/18.
6
//  Copyright © 2018-2023 ocodo. All rights reserved.
7
//
8
9
import Cocoa
10
import AppKit
11
import KeyHolder
12
import Magnet
13
import RxSwift
14
import RxCocoa
15
16
class PreferencesWindow: CutBoxBaseWindow {
17
18
    @IBOutlet weak var tabView: PreferencesTabView!
19
20
49
    override func awakeFromNib() {
21
49
        self.title = "preferences_title".l7n
22
49
        self.titlebarAppearsTransparent = true
23
49
        super.awakeFromNib()
24
49
    }
25
}