mirror of https://github.com/M66B/FairEmail.git
Small behavior improvement
This commit is contained in:
parent
cbdda8bb0d
commit
20c3db0920
|
@ -310,7 +310,8 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||||
ViewGroup group = (ViewGroup) itemView;
|
ViewGroup group = (ViewGroup) itemView;
|
||||||
for (int i = 0; i < group.getChildCount(); i++) {
|
for (int i = 0; i < group.getChildCount(); i++) {
|
||||||
View child = group.getChildAt(i);
|
View child = group.getChildAt(i);
|
||||||
if (child.getId() != R.id.tvDay && child.getId() != R.id.vSeparatorDay)
|
int id = child.getId();
|
||||||
|
if (id != R.id.tvDay && id != R.id.vSeparatorDay && id != R.id.vSeparator)
|
||||||
child.setTranslationX(dx);
|
child.setTranslationX(dx);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue