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
|
||||
}
|
||||
if box.Font == nil {
|
||||
font := console.AsciiFontFlat
|
||||
font := console.AsciiFont2D
|
||||
box.Font = &font
|
||||
}
|
||||
if box.Border == nil {
|
||||
|
|
|
@ -21,8 +21,8 @@ const (
|
|||
type AsciiFont string
|
||||
|
||||
const (
|
||||
AsciiFontFlat AsciiFont = "flat"
|
||||
AsciiFont3D AsciiFont = "3d"
|
||||
AsciiFont2D AsciiFont = "2d"
|
||||
AsciiFont3D AsciiFont = "3d"
|
||||
)
|
||||
|
||||
func Init() {
|
||||
|
|
Loading…
Reference in New Issue