diff --git a/js/ui/status/power.js b/js/ui/status/power.js index a5f2625f5..d80407207 100644 --- a/js/ui/status/power.js +++ b/js/ui/status/power.js @@ -96,7 +96,7 @@ const Indicator = new Lang.Class({ let minutes = time % 60; let hours = Math.floor(time / 60); let timestring; - if (time > 60) { + if (time >= 60) { if (minutes == 0) { timestring = ngettext("%d hour remaining", "%d hours remaining", hours).format(hours); } else {