Files
ClashX-Dashboard/ClashX Dashboard/Views/ClearBackgroundList.swift
2023-04-25 14:51:23 +08:00

17 lines
301 B
Swift

//
// 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
}
}