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

Commit 89a32dba authored by Julian Mancini's avatar Julian Mancini
Browse files

Display size when size equals 0.

Currently, we only display size when size > 0. Now, we display when size
>= 0.

Bug: 64073810
Test: In place
Change-Id: I18c792228df8972f12f48d0f29bc674b6d4c840c
parent 7e4b4c5f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -54,7 +54,7 @@ public class DetailsView extends TableView implements DetailsDisplay {

        // TODO: Each of these rows need to be removed if the condition is false and previously
        // set.
        if (doc.size > 0 && !doc.isDirectory()) {
        if (doc.size >= 0 && !doc.isDirectory()) {
            put(R.string.sort_dimension_size, Formatter.formatFileSize(getContext(), doc.size));
        }