浏览代码

Fixed Alerbox size with Unicode.

bugz 1 年之前
父节点
当前提交
9054d1db50
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      door/box.go

+ 1 - 1
door/box.go

@@ -85,7 +85,7 @@ func (b *Box) Bottom() string {
 
 func AlertBox(text string, style int) []string {
 	var results []string
-	b := Box{Width: len(text), Style: style}
+	b := Box{Width: StringLen(text), Style: style}
 	results = append(results, b.Top())
 	results = append(results, b.Row(text))
 	results = append(results, b.Bottom())