mirror of
https://github.com/f-droid/fdroidclient.git
synced 2026-04-22 16:01:37 -04:00
Point to R.id.information, not R.id.text
Although the `textView` in `DonateViewHolder is currently not used, it was pointing to an id which was not in the layout. This has been fixed in case future devs choose to use this text view. Alternatively, we could remove it completely if we don't think it is going to be used in this upcoming UI work.
This commit is contained in:
@@ -652,7 +652,7 @@ public class AppDetailsRecyclerViewAdapter
|
||||
|
||||
DonateViewHolder(View view) {
|
||||
super(view);
|
||||
textView = (TextView) view.findViewById(R.id.text);
|
||||
textView = (TextView) view.findViewById(R.id.information);
|
||||
contentView = (LinearLayout) view.findViewById(R.id.ll_information);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user