KMPDFSplitView.swift 269 B

12345678910111213141516171819
  1. //
  2. // KMPDFSplitView.swift
  3. // PDF Reader Pro
  4. //
  5. // Created by Niehaoyu on 2024/10/29.
  6. //
  7. import Cocoa
  8. class KMPDFSplitView: NSSplitView {
  9. override func draw(_ dirtyRect: NSRect) {
  10. super.draw(dirtyRect)
  11. // Drawing code here.
  12. }
  13. }