Fix "Next Bookmark" command not reset current-column issue
Reset current column after moving to next bookmark. Fix #14137, close #14148
This commit is contained in:
parent
c2ebb94759
commit
670e2f098d
|
@ -4940,6 +4940,7 @@ void Notepad_plus::bookmarkNext(bool forwardScan)
|
|||
|
||||
_pEditView->execute(SCI_ENSUREVISIBLEENFORCEPOLICY, nextLine);
|
||||
_pEditView->execute(SCI_GOTOLINE, nextLine);
|
||||
_pEditView->execute(SCI_CHOOSECARETX);
|
||||
}
|
||||
|
||||
void Notepad_plus::staticCheckMenuAndTB() const
|
||||
|
|
Loading…
Reference in New Issue