1234567891011121314151617 |
- //
- // KMView.swift
- // PDF Reader Pro
- //
- // Created by tangchao on 2023/10/20.
- //
- import Cocoa
- class KMView: NSView {
- override func updateLayer() {
- super.updateLayer()
-
- self.layer?.backgroundColor = KMAppearance.viewBackgroundColor().cgColor
- }
- }
|