Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
always show status for completed jobs
  • Loading branch information
jmcphers committed Jan 7, 2019
1 parent d02761f commit b7de50d
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -67,6 +67,7 @@ public void showJob(Job job)
progress_.setVisible(false);
status += " " + StringUtil.friendlyDateTime(new Date(job.completed * 1000));
elapsed_.setText(StringUtil.conciseElaspedTime(job.completed - job.started));
status_.setVisible(true);
}
else if (job.max > 0)
{
Expand Down

0 comments on commit b7de50d

Please sign in to comment.