Limit text zoom

pull/199/head
M66B 3 years ago
parent 51bcae1547
commit 6be9129a75

@ -830,6 +830,8 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
float factor = detector.getScaleFactor();
float size = tvBody.getTextSize() * factor;
float scale = (textSize == 0 ? 1.0f : size / (textSize * message_zoom / 100f));
if (scale > 10)
return true;
// Text size
properties.setSize(message.id, size);

Loading…
Cancel
Save