diff --git a/Window.py b/Window.py index 55c5b2c..82fb8c3 100644 --- a/Window.py +++ b/Window.py @@ -124,8 +124,8 @@ class Window: self.project_hour_labels[p][day].set_text(hrs) def hoursFromSeconds(self, secs): - if secs < 0.6 * 60 * 60: - secs = 0.6 * 60 * 60; + if secs < 0.1 * 60 * 60: + secs = 0.1 * 60 * 60; return "%.1f" % (secs / 60.0 / 60.0) def main(self):