mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +01:00
fix player juggle
This commit is contained in:
parent
4a12409d97
commit
6522f54989
1 changed files with 3 additions and 3 deletions
|
@ -334,10 +334,10 @@ public class GameConfig extends Activity implements View.OnClickListener {
|
|||
{
|
||||
boolean handled = true;
|
||||
|
||||
switch (item.getItemId()) {
|
||||
switch( item.getItemId() ) {
|
||||
case R.id.game_config_juggle:
|
||||
m_gi.juggle();
|
||||
onContentChanged();
|
||||
loadPlayers();
|
||||
break;
|
||||
case R.id.game_config_done:
|
||||
m_gi.hintsNotAllowed = !Utils.getChecked( this, R.id.hints_allowed );
|
||||
|
@ -367,7 +367,7 @@ public class GameConfig extends Activity implements View.OnClickListener {
|
|||
handled = false;
|
||||
}
|
||||
return handled;
|
||||
}
|
||||
} // onOptionsItemSelected
|
||||
|
||||
public void onClick( View view )
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue