Label should have IsTabSkipped

This commit is contained in:
Brian Buller 2019-03-04 23:20:38 +00:00
parent de1d4c8338
commit 2d1349c5ee
1 changed files with 5 additions and 0 deletions

View File

@ -20,6 +20,11 @@ func CreateLabel(lbl string, x, y, w, h int, fg, bg termbox.Attribute) *Label {
return &i
}
// IsTabSkipped is always true for a label
func (i *InputField) IsTabSkipped() bool {
return true
}
// GetID returns this control's ID
func (i *Label) GetID() string { return i.id }