Remove Heading.SetSelectable

This commit is contained in:
Sasha Koshka 2024-08-24 19:49:20 -04:00
parent 14f6e175f0
commit c043f9bf8d

View File

@ -44,12 +44,6 @@ func (this *Heading) SetText (text string) {
this.box.SetText(text) this.box.SetText(text)
} }
// SetSelectable sets whether or not the text content can be highlighted/
// selected.
func (this *Heading) SetSelectable (selectable bool) {
this.box.SetSelectable(selectable)
}
// Select sets the text cursor or selection. // Select sets the text cursor or selection.
func (this *Heading) Select (dot text.Dot) { func (this *Heading) Select (dot text.Dot) {
this.box.Select(dot) this.box.Select(dot)