revert unnecessary change in StatusViewHolder

This commit is contained in:
Conny Duck 2024-04-12 07:41:10 +02:00
parent 654e522805
commit 4f14b4ecac
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ public class StatusViewHolder extends StatusBaseViewHolder {
}
// don't use this on the same ViewHolder as setRebloggedByDisplayName, will cause recycling issues as paddings are changed
public void setPollInfo(final boolean ownPoll) {
protected void setPollInfo(final boolean ownPoll) {
statusInfo.setText(ownPoll ? R.string.poll_ended_created : R.string.poll_ended_voted);
statusInfo.setCompoundDrawablesRelativeWithIntrinsicBounds(R.drawable.ic_poll_24dp, 0, 0, 0);
statusInfo.setCompoundDrawablePadding(Utils.dpToPx(statusInfo.getContext(), 10));