Fixed scaling percentage

This commit is contained in:
M66B 2020-09-06 10:31:04 +02:00
parent d4ca4b9af1
commit 8931abe4e2
1 changed files with 1 additions and 1 deletions

View File

@ -792,7 +792,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
}
// Feedback
String perc = Math.round(scale) + " %";
String perc = Math.round(scale * 100) + " %";
if (toast != null)
toast.cancel();
toast = ToastEx.makeText(context, perc, Toast.LENGTH_SHORT);