mirror of
https://github.com/yJason/ClashX-Dashboard.git
synced 2026-02-04 10:02:26 +08:00
17 lines
301 B
Swift
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
|
|
}
|
|
}
|