Fix Document list not sync with tab order after sorting

Document List now updates itself with respect to the tabs sorted by the windows dialog

Fix #11272, close #11411
This commit is contained in:
Ashfaaq18 2022-03-19 13:13:16 +05:30 committed by Don HO
parent 6086e819fd
commit 32580e6a80
1 changed files with 3 additions and 0 deletions

View File

@ -2879,6 +2879,9 @@ LRESULT Notepad_plus::process(HWND hwnd, UINT message, WPARAM wParam, LPARAM lPa
_pDocTab->setBuffer(i, tempBufs[nmdlg->Items[i]]);
}
activateBuffer(_pDocTab->getBufferByIndex(_pDocTab->getCurrentTabIndex()), currentView());
::SendMessage(_pDocTab->getHParent(), NPPM_INTERNAL_DOCORDERCHANGED, 0, _pDocTab->getCurrentTabIndex());
break;
}
}