don't set dict name to "download more". Just not a good idea.

This commit is contained in:
Andy2 2011-11-04 17:15:12 -07:00
parent 0561ca5ab9
commit 5123bebe50

View file

@ -363,7 +363,10 @@ public class GameConfig extends XWActivity
(ArrayAdapter<String>)spinner.getAdapter();
if ( position < adapter.getCount() ) {
lp.dictName = adapter.getItem(position);
String name = adapter.getItem(position);
if ( ! name.equals( m_browseText ) ) {
lp.dictName = name;
}
}
lp.setIsRobot( Utils.getChecked( dialog, R.id.robot_check ) );