From 735e42cd9028e45847eb1757dbd85a6fe0b6c755 Mon Sep 17 00:00:00 2001 From: Eric House Date: Wed, 13 Nov 2013 06:50:30 -0800 Subject: [PATCH] launch on tap even if selected --- .../XWords4/src/org/eehouse/android/xw4/GameListItem.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameListItem.java b/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameListItem.java index d1cf0cb14..3508f8e99 100644 --- a/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameListItem.java +++ b/xwords4/android/XWords4/src/org/eehouse/android/xw4/GameListItem.java @@ -84,9 +84,7 @@ public class GameListItem extends LinearLayout @Override public void onClick( View v ) { // if selected, just un-select - if ( m_selected ) { - toggleSelected(); - } else if ( null != m_summary ) { + if ( null != m_summary ) { m_cb.itemClicked( GameListItem.this, m_summary ); } }