소스 검색

【综合】创建空白文档,不显示注释转换进度窗口

tangchao 9 달 전
부모
커밋
49d6aefb35
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      PDF Office/PDF Master/Class/PDFWindowController/ViewController/KMMainViewController+UI.swift

+ 5 - 0
PDF Office/PDF Master/Class/PDFWindowController/ViewController/KMMainViewController+UI.swift

@@ -148,6 +148,11 @@ extension KMMainViewController {
             return
         }
         
+        let isNewCreated = (self.myDocument as? KMMainDocument)?.isNewCreated ?? false
+        if isNewCreated {
+            return
+        }
+        
         self.model.needConvertNotes = false
         Task { @MainActor in
             self.convertNotesUsingPDFDocument(pdfDocument)