Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 39b95ad6 authored by Paul Keith's avatar Paul Keith
Browse files

SystemUI: Fix Data Usage tile to match Settings

Change-Id: Ieff3504baf3d13c77d06fcde87d5ac56d2586194
parent 7e2dc21a
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -38,9 +38,9 @@ import java.text.DecimalFormat;
 */
 */
public class DataUsageDetailView extends LinearLayout {
public class DataUsageDetailView extends LinearLayout {


    private static final double KB = 1024;
    private static final double KB = 1000;
    private static final double MB = 1024 * KB;
    private static final double MB = 1000 * KB;
    private static final double GB = 1024 * MB;
    private static final double GB = 1000 * MB;


    private final DecimalFormat FORMAT = new DecimalFormat("#.##");
    private final DecimalFormat FORMAT = new DecimalFormat("#.##");