mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-16 15:41:16 +01:00
fix tap down lower not opening game
Making the right_side elem match its parent height prevents the lower-right region of game list items from falling through and triggering a toggle-selection event.
This commit is contained in:
parent
da3f6db9e4
commit
39deeeb089
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@
|
||||||
<LinearLayout android:id="@+id/right_side"
|
<LinearLayout android:id="@+id/right_side"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="match_parent"
|
||||||
android:clickable="true"
|
android:clickable="true"
|
||||||
android:longClickable="true"
|
android:longClickable="true"
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in a new issue