|
@@ -260,6 +260,11 @@ class KMNoteReplyHanddler: NSObject {
|
|
|
|
|
|
if data == NSLocalizedString("Edit", comment: "") {
|
|
if data == NSLocalizedString("Edit", comment: "") {
|
|
self?.editReplyAnnotation(replyModel: replyModel)
|
|
self?.editReplyAnnotation(replyModel: replyModel)
|
|
|
|
+ DispatchQueue.main.async {
|
|
|
|
+ if let row = self?.viewC?.noteOutlineView.row(forItem: replyModel?.annoModel?.footerModel) {
|
|
|
|
+ self?.viewC?.noteOutlineView.scrollRowToVisible(row)
|
|
|
|
+ }
|
|
|
|
+ }
|
|
} else if data == NSLocalizedString("Delete", comment: "") {
|
|
} else if data == NSLocalizedString("Delete", comment: "") {
|
|
if let model = replyModel {
|
|
if let model = replyModel {
|
|
self?.removeReplyAnnotation(model.replyAnno)
|
|
self?.removeReplyAnnotation(model.replyAnno)
|