Ver código fonte

注释 - 修复在某一注释模式下,进入页面模式再切回注释模块,子ToolBar还选中之前注释,但是在PDFView中未处于到那对应注释模式下

wanjun 1 ano atrás
pai
commit
73e47ebe8e

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

@@ -590,6 +590,7 @@ import Cocoa
         if (editController == nil) {
             return
         }
+        self.listView.annotationType = .highlight
         
         editController?.view.removeFromSuperview()
         editController?.removeFromParent()
@@ -598,6 +599,8 @@ import Cocoa
         self.listView.layoutDocumentView()
         self.view.window?.makeFirstResponder(self.listView)
         
+        self.listView.annotationType = .unkown
+        
         self.listView.go(toPageIndex: editController!.listViewCurrentIndex, animated: false)
     }