Skip to content
This repository has been archived by the owner on Nov 28, 2024. It is now read-only.

Commit

Permalink
Fix regression 56 (#57)
Browse files Browse the repository at this point in the history
#Fix #55 (comment)
Regression due to #56
  • Loading branch information
Alkarex authored Apr 26, 2020
1 parent 30619f3 commit a5292f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public VerticalSingleItemView(final DataMgr dataMgr, final Context context, fina
@Override
public boolean onTouch(final View view, final MotionEvent event) {
boolean ret = false;
final TextView txt = (TextView) view.findViewById(R.id.BtnText);
final TextView txt = (TextView) view.findViewById(R.id.BtnText2);
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:
txt.setTextColor(0xFF787878);
Expand Down

0 comments on commit a5292f3

Please sign in to comment.