Revert "Fixes #7630 Hint was be appending for every language. Changed to only fill hint with the matching language."
This reverts commitb6468db118
, the bug will be properly fixed by the cherry-pick of6b5c595
.
This commit is contained in:
parent
be0350704f
commit
9e3f063e99
1 changed files with 4 additions and 1 deletions
|
@ -114,8 +114,11 @@ public:
|
|||
|
||||
if (langs[j]==lname.substr(0,langs[j].length()).to_lower()) {
|
||||
idx=j;
|
||||
hint+=names[j].replace(","," ");
|
||||
}
|
||||
if (j>0) {
|
||||
hint+=",";
|
||||
}
|
||||
hint+=names[j].replace(","," ");
|
||||
}
|
||||
|
||||
ti->set_cell_mode(1,TreeItem::CELL_MODE_RANGE);
|
||||
|
|
Loading…
Reference in a new issue