瀏覽代碼

Merge pull request #10169 from laurazard/fix-terminal-height

Adjust terminal height calc
Laura Brehm 2 年之前
父節點
當前提交
db267d86c1
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      pkg/progress/tty.go

+ 1 - 1
pkg/progress/tty.go

@@ -158,7 +158,7 @@ func (w *ttyWriter) print() {
 	}
 
 	skipChildEvents := false
-	if len(w.eventIDs) > goterm.Height()-1 {
+	if len(w.eventIDs) > goterm.Height()-2 {
 		skipChildEvents = true
 	}
 	numLines := 0