mirror of https://github.com/M66B/FairEmail.git
Fixed scaling percentage
This commit is contained in:
parent
d4ca4b9af1
commit
8931abe4e2
|
@ -792,7 +792,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||||
}
|
}
|
||||||
|
|
||||||
// Feedback
|
// Feedback
|
||||||
String perc = Math.round(scale) + " %";
|
String perc = Math.round(scale * 100) + " %";
|
||||||
if (toast != null)
|
if (toast != null)
|
||||||
toast.cancel();
|
toast.cancel();
|
||||||
toast = ToastEx.makeText(context, perc, Toast.LENGTH_SHORT);
|
toast = ToastEx.makeText(context, perc, Toast.LENGTH_SHORT);
|
||||||
|
|
Loading…
Reference in New Issue