diff --git a/src/gui/viewmanager.py b/src/gui/viewmanager.py index 7122135ea..0e089515f 100644 --- a/src/gui/viewmanager.py +++ b/src/gui/viewmanager.py @@ -1467,7 +1467,7 @@ class ViewManager(CLIManager): try: bytes += posixpath.getsize(fullname) length = len(str(bytes)) - if bytes <= 99999: + if bytes <= 999999: mbytes = "< 1" else: mbytes = str(bytes)[:(length-6)] diff --git a/src/plugins/gramplet/StatsGramplet.py b/src/plugins/gramplet/StatsGramplet.py index 47191ea97..d40a8a4bf 100644 --- a/src/plugins/gramplet/StatsGramplet.py +++ b/src/plugins/gramplet/StatsGramplet.py @@ -90,7 +90,7 @@ class StatsGramplet(Gramplet): try: bytes += posixpath.getsize(fullname) length = len(str(bytes)) - if bytes <= 99999: + if bytes <= 999999: mbytes = _("less than 1") else: mbytes = str(bytes)[:(length-6)] diff --git a/src/plugins/textreport/Summary.py b/src/plugins/textreport/Summary.py index cf214df8b..d9c6d5f12 100644 --- a/src/plugins/textreport/Summary.py +++ b/src/plugins/textreport/Summary.py @@ -213,7 +213,7 @@ class SummaryReport(Report): size_in_bytes += posixpath.getsize( media_path_full(self.__db, media.get_path())) length = len(str(size_in_bytes)) - if size_in_bytes <= 99999: + if size_in_bytes <= 999999: mbytes = _("less than 1") else: mbytes = str(size_in_bytes)[:(length-6)]