|
@@ -614,7 +614,9 @@ class KMSecondaryPDFView: CPDFListView {
|
|
|
}
|
|
|
|
|
|
@objc func handlePageChangedNotification(_ notification: Notification) {
|
|
|
- self.pagePopUpButton?.selectItem(at: self.currentPageIndex)
|
|
|
+ if !self.document.isLocked {
|
|
|
+ self.pagePopUpButton?.selectItem(at: self.currentPageIndex)
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
@objc func handleSynchronizedScaleChangedNotification(_ notification: Notification) {
|