flat font rename to 2d

This commit is contained in:
sqshq 2019-04-24 20:48:16 -04:00
parent 6e57383991
commit 7a1197d446
3 changed files with 13 additions and 13 deletions

File diff suppressed because one or more lines are too long

View File

@ -115,7 +115,7 @@ func (c *Config) setDefaultValues() {
box.Label = &label
}
if box.Font == nil {
font := console.AsciiFontFlat
font := console.AsciiFont2D
box.Font = &font
}
if box.Border == nil {

View File

@ -21,7 +21,7 @@ const (
type AsciiFont string
const (
AsciiFontFlat AsciiFont = "flat"
AsciiFont2D AsciiFont = "2d"
AsciiFont3D AsciiFont = "3d"
)