This reverts commit b6468db118f3bd0359f7ba709e391cca4ac7f9d6, the bug will be properly fixed by the cherry-pick of 6b5c595.
@@ -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);