Browse Source

【BOTA】注释隐藏逻辑补充

lizhe 1 year ago
parent
commit
1878830e7f

+ 3 - 1
PDF Office/PDF Master/Class/PDFWindowController/Side/LeftSide/Thumbnail/KMPDFThumbnailItem.swift

@@ -76,7 +76,9 @@ class KMPDFThumbnailItem: NSCollectionViewItem {
         didSet {
             if self.annotationShowState == .hidden {
                 for annotation in self.page.annotations {
-                    annotation.setHidden(true)
+                    if annotation.annotationShouldDisplay() == false {
+                        annotation.setHidden(true)
+                    }
                 }
             } else {
                 for annotation in self.page.annotations {