Make the text direction of finder's search result follow the main edit zone's one
This commit is contained in:
parent
edaa67db28
commit
5e96dd0166
@ -2476,11 +2476,8 @@ Finder * FindReplaceDlg::createFinder()
|
|||||||
Finder *pFinder = new Finder();
|
Finder *pFinder = new Finder();
|
||||||
pFinder->init(_hInst, (*_ppEditView)->getHParent(), _ppEditView);
|
pFinder->init(_hInst, (*_ppEditView)->getHParent(), _ppEditView);
|
||||||
|
|
||||||
NativeLangSpeaker *pNativeSpeaker = (NppParameters::getInstance()).getNativeLangSpeaker();
|
|
||||||
bool isRTL = pNativeSpeaker->isRTL();
|
|
||||||
|
|
||||||
tTbData data = { 0 };
|
tTbData data = { 0 };
|
||||||
|
bool isRTL = (*_ppEditView)->isTextDirectionRTL();
|
||||||
pFinder->create(&data, isRTL);
|
pFinder->create(&data, isRTL);
|
||||||
::SendMessage(_hParent, NPPM_MODELESSDIALOG, MODELESSDIALOGREMOVE, reinterpret_cast<WPARAM>(pFinder->getHSelf()));
|
::SendMessage(_hParent, NPPM_MODELESSDIALOG, MODELESSDIALOGREMOVE, reinterpret_cast<WPARAM>(pFinder->getHSelf()));
|
||||||
// define the default docking behaviour
|
// define the default docking behaviour
|
||||||
@ -2494,6 +2491,7 @@ Finder * FindReplaceDlg::createFinder()
|
|||||||
// in this case is DOCKABLE_DEMO_INDEX
|
// in this case is DOCKABLE_DEMO_INDEX
|
||||||
data.dlgID = 0;
|
data.dlgID = 0;
|
||||||
|
|
||||||
|
NativeLangSpeaker *pNativeSpeaker = (NppParameters::getInstance()).getNativeLangSpeaker();
|
||||||
generic_string text = pNativeSpeaker->getLocalizedStrFromID("find-result-caption", TEXT(""));
|
generic_string text = pNativeSpeaker->getLocalizedStrFromID("find-result-caption", TEXT(""));
|
||||||
if (!text.empty())
|
if (!text.empty())
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user