flat font rename to 2d
This commit is contained in:
parent
6e57383991
commit
7a1197d446
File diff suppressed because one or more lines are too long
|
@ -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 {
|
||||||
|
|
|
@ -21,7 +21,7 @@ const (
|
||||||
type AsciiFont string
|
type AsciiFont string
|
||||||
|
|
||||||
const (
|
const (
|
||||||
AsciiFontFlat AsciiFont = "flat"
|
AsciiFont2D AsciiFont = "2d"
|
||||||
AsciiFont3D AsciiFont = "3d"
|
AsciiFont3D AsciiFont = "3d"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue