mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-04 16:16:33 +02:00
Fixed scaling percentage
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user