mirror of
https://github.com/br0xen/termbox-util.git
synced 2024-11-22 13:33:15 +00:00
Label should have IsTabSkipped
This commit is contained in:
parent
de1d4c8338
commit
2d1349c5ee
@ -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 }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user