mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-14 08:01:38 +01:00
don't draw separate icon in games list elements for needs-sync relay
game -- since that state no longer really exists.
This commit is contained in:
parent
adac3abcc6
commit
e80417e806
2 changed files with 1 additions and 5 deletions
Binary file not shown.
Before Width: | Height: | Size: 3.7 KiB |
|
@ -196,11 +196,7 @@ public class GameListAdapter extends XWListAdapter {
|
||||||
(ImageView)layout.findViewById( R.id.msg_marker );
|
(ImageView)layout.findViewById( R.id.msg_marker );
|
||||||
CommsConnType conType = summary.conType;
|
CommsConnType conType = summary.conType;
|
||||||
if ( CommsConnType.COMMS_CONN_RELAY == conType ) {
|
if ( CommsConnType.COMMS_CONN_RELAY == conType ) {
|
||||||
if ( summary.pendingMsgLevel != GameSummary.MSG_FLAGS_NONE ) {
|
iconID = R.drawable.relaygame;
|
||||||
iconID = R.drawable.ic_popup_sync_1;
|
|
||||||
} else {
|
|
||||||
iconID = R.drawable.relaygame;
|
|
||||||
}
|
|
||||||
} else if ( CommsConnType.COMMS_CONN_BT == conType ) {
|
} else if ( CommsConnType.COMMS_CONN_BT == conType ) {
|
||||||
iconID = android.R.drawable.stat_sys_data_bluetooth;
|
iconID = android.R.drawable.stat_sys_data_bluetooth;
|
||||||
} else if ( CommsConnType.COMMS_CONN_SMS == conType ) {
|
} else if ( CommsConnType.COMMS_CONN_SMS == conType ) {
|
||||||
|
|
Loading…
Reference in a new issue