File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -1310,6 +1310,7 @@ bool found;
1310
1310
return ;
1311
1311
1312
1312
// select the new item
1313
+ m_cTreeCtrl.SetFocus ();
1313
1314
m_cTreeCtrl.SelectItem (hItem);
1314
1315
m_cTreeCtrl.EnsureVisible (hItem);
1315
1316
@@ -1328,6 +1329,7 @@ bool found;
1328
1329
1329
1330
if (found)
1330
1331
{
1332
+ m_ctlList->SetFocus ();
1331
1333
m_ctlList->SetItemState (m_pObjectFindInfo->m_nCurrentLine ,
1332
1334
LVIS_FOCUSED | LVIS_SELECTED,
1333
1335
LVIS_FOCUSED | LVIS_SELECTED);
Original file line number Diff line number Diff line change @@ -2790,7 +2790,10 @@ CString CPrefsP7::GetFindText (CObject * pItem) const
2790
2790
2791
2791
CString strResult = alias_item->name ;
2792
2792
2793
- strResult += " \t " + alias_item->contents + " \t " + alias_item->strLabel + " \t " + alias_item->strGroup ;
2793
+ strResult += " \t " + alias_item->contents +
2794
+ " \t " + alias_item->strLabel +
2795
+ " \t " + alias_item->strGroup +
2796
+ " \t " + alias_item->strProcedure ;
2794
2797
2795
2798
return strResult;
2796
2799
@@ -3896,7 +3899,10 @@ CString CPrefsP8::GetFindText (CObject * pItem) const
3896
3899
3897
3900
CString strResult = trigger_item->trigger ;
3898
3901
3899
- strResult += " \t " + trigger_item->contents + " \t " + trigger_item->strLabel + " \t " + trigger_item->strGroup ;
3902
+ strResult += " \t " + trigger_item->contents +
3903
+ " \t " + trigger_item->strLabel +
3904
+ " \t " + trigger_item->strGroup +
3905
+ " \t " + trigger_item->strProcedure ;
3900
3906
3901
3907
return strResult;
3902
3908
@@ -6447,7 +6453,9 @@ CString CPrefsP16::GetFindText (CObject * pItem) const
6447
6453
6448
6454
CString strResult = timer_item->strContents ;
6449
6455
6450
- strResult += timer_item->strLabel + " \t " + timer_item->strGroup ;
6456
+ strResult += " \t " + timer_item->strLabel +
6457
+ " \t " + timer_item->strGroup +
6458
+ " \t " + timer_item->strProcedure ;
6451
6459
6452
6460
return strResult;
6453
6461
You can’t perform that action at this time.
0 commit comments