NewHeading returns a Heading as expected

This commit is contained in:
Sasha Koshka 2024-05-07 20:21:45 -04:00
parent f99f60d642
commit 224ca25000

View File

@ -12,10 +12,10 @@ type Heading struct {
}
// NewHeading creates a new section heading. The level can be from 0 to 2.
func NewHeading (level int, text string) *Label {
func NewHeading (level int, text string) *Heading {
if level < 0 { level = 0 }
if level > 2 { level = 2 }
this := &Label { TextBox: tomo.NewTextBox() }
this := &Heading { TextBox: tomo.NewTextBox() }
theme.Apply(this, theme.R("objects", "Heading", fmt.Sprint(level)))
this.SetText(text)
return this