This commit is contained in:
mrFq1
2023-04-25 14:51:23 +08:00
commit f3141fbffe
39 changed files with 3793 additions and 0 deletions
@@ -0,0 +1,16 @@
//
// ClearBackgroundList.swift
// ClashX Dashboard
//
//
import Foundation
import SwiftUI
extension NSTableView {
open override func viewWillMove(toWindow newWindow: NSWindow?) {
super.viewDidMoveToWindow()
backgroundColor = NSColor.clear
enclosingScrollView!.drawsBackground = false
}
}