Fix inconsistent text scaling in quotes.

Fixes #10188
This commit is contained in:
Max Ullinger
2021-01-13 21:54:49 +01:00
committed by Cody Henthorne
parent bece58d939
commit c54f016213
2 changed files with 5 additions and 0 deletions

View File

@@ -293,6 +293,10 @@ public class QuoteView extends FrameLayout implements RecipientForeverObserver {
footerView.setBackgroundColor(ContextCompat.getColor(getContext(), R.color.quote_view_background));
}
public void setTextSize(int unit, float size) {
bodyView.setTextSize(unit, size);
}
public long getQuoteId() {
return id;
}