Small improvements

This commit is contained in:
M66B
2020-07-02 12:48:24 +02:00
parent aa05caf488
commit 89a1e0c5d4
4 changed files with 16 additions and 5 deletions

View File

@@ -755,7 +755,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
tvBody.setTextSize(TypedValue.COMPLEX_UNIT_PX, size);
scale = scale * factor;
String perc = Math.round(scale * 100) + " %";
String perc = Math.round(scale * message_zoom) + " %";
if (toast != null)
toast.cancel();
toast = ToastEx.makeText(context, perc, Toast.LENGTH_SHORT);