2 次代碼提交 95215932e7 ... 9c0ee26791

作者 SHA1 備註 提交日期
  blackwine 9c0ee26791 becoming a party pig 3 周之前
  blackwine 95215932e7 becoming a party pig 3 周之前
共有 1 個文件被更改,包括 7 次插入0 次删除
  1. 7 0
      bar.go

+ 7 - 0
bar.go

@@ -32,7 +32,14 @@ func (bar *ScreenBar) reset(msg *osc.Message) {
 	bar.update()
 }
 
+// Paint a screen by drawing  bar
 func (bar *ScreenBar) update() {
+	// Config size if in terminal
+	if term.IsTerminal(0) {
+		bar.columns, _, _ = term.GetSize(0)
+	}
+
+	// Go home and draw (type) a bar
 	fmt.Print("")
 	fmt.Print("")
 	s := fmt.Sprintf(" %%%ds %%6d ", 9-bar.columns)