pull/137/head
Simon Let 6 years ago
parent a34b4b2d88
commit 92c15c6a0b
  1. 2
      cmd/cli/item.go

@ -99,7 +99,7 @@ func splitStatusLineToLines(statusLine string, printedLineLength, realLineLength
func (i item) drawStatusLine(compactRendering bool, printedLineLength, realLineLength int) []string { func (i item) drawStatusLine(compactRendering bool, printedLineLength, realLineLength int) []string {
if i.isRaw { if i.isRaw {
return splitStatusLineToLines(" "+i.cmdLine, printedLineLength, realLineLength) return splitStatusLineToLines(i.cmdLine, printedLineLength, realLineLength)
} }
secs := int64(i.realtimeBefore) secs := int64(i.realtimeBefore)
nsecs := int64((i.realtimeBefore - float64(secs)) * 1e9) nsecs := int64((i.realtimeBefore - float64(secs)) * 1e9)

Loading…
Cancel
Save