I keep forgetting to commit stuff

This commit is contained in:
2023-08-10 17:52:01 -04:00
parent 8d7d9882ba
commit c0bfa76ba6
10 changed files with 213 additions and 10 deletions

View File

@@ -11,7 +11,7 @@ type Label struct {
// NewLabel creates a new text label.
func NewLabel (text string) *Label {
this := &Label { TextBox: tomo.NewTextBox() }
theme.Apply(this, theme.R("objects", "Label"))
theme.Apply(this, theme.R("objects", "Label", ""))
this.SetText(text)
return this
}