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 box.Label = &label
} }
if box.Font == nil { if box.Font == nil {
font := console.AsciiFontFlat font := console.AsciiFont2D
box.Font = &font box.Font = &font
} }
if box.Border == nil { if box.Border == nil {

View File

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