KMView.swift 283 B

1234567891011121314151617
  1. //
  2. // KMView.swift
  3. // PDF Reader Pro
  4. //
  5. // Created by tangchao on 2023/10/20.
  6. //
  7. import Cocoa
  8. class KMView: NSView {
  9. override func updateLayer() {
  10. super.updateLayer()
  11. self.layer?.backgroundColor = KMAppearance.viewBackgroundColor().cgColor
  12. }
  13. }