mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-27 09:58:45 +01:00
don't set dict name to "download more". Just not a good idea.
This commit is contained in:
parent
0561ca5ab9
commit
5123bebe50
1 changed files with 4 additions and 1 deletions
|
@ -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 ) );
|
||||
|
|
Loading…
Reference in a new issue