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:
Alan Kilborn 2023-09-14 07:23:04 -04:00 committed by Don Ho
parent c2ebb94759
commit 670e2f098d
1 changed files with 1 additions and 0 deletions

View File

@ -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