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

Commit 03bf0cc9 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Display size when size equals 0."

parents 21b4a27d 89a32dba
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));
        }