mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-04 23:02:02 +01:00
Mark the current player's wordlist in wordlists popup
This commit is contained in:
parent
148da01fdc
commit
10608b137f
2 changed files with 5 additions and 1 deletions
|
@ -2167,4 +2167,6 @@
|
|||
<string name="prefs_thumb">Thumbnails</string>
|
||||
<string name="prefs_thumb_summary">Setting for game snapshots</string>
|
||||
<string name="dropped_dupe">Invitation ignored: already used</string>
|
||||
<string name="cur_menu_markerf">%1$s (yours)</string>
|
||||
|
||||
</resources>
|
||||
|
|
|
@ -873,7 +873,9 @@ public class DictsActivity extends XWExpandableListActivity
|
|||
.setOnMenuItemClickListener( listener );
|
||||
|
||||
// Add at top but save until have dal info
|
||||
MenuItem curItem = menu.add( curDict );
|
||||
MenuItem curItem =
|
||||
menu.add( context.getString( R.string.cur_menu_markerf,
|
||||
curDict ) );
|
||||
|
||||
DictAndLoc[] dals = DictUtils.dictList( context );
|
||||
for ( DictAndLoc dal : dals ) {
|
||||
|
|
Loading…
Reference in a new issue