Now translation tool accepts synonyms separated by ';' in the entry field.

This commit is contained in:
amontano 2003-09-14 05:56:20 +00:00
parent 115d0e0e6c
commit e89c49651c
5 changed files with 37 additions and 10 deletions

View file

@ -216,7 +216,8 @@ class WhichDictionaryFrame extends Dialog implements ActionListener, ItemListene
else if (obj instanceof Choice)
{
Choice ch = (Choice) obj;
response = dictsOnline[ch.getSelectedIndex()];
dictType = ch.getSelectedIndex();
response = dictsOnline[dictType];
}
}