DropDown now only uses List's main selected callback. Fixes #115

This commit is contained in:
Oliver 2018-05-12 16:35:32 +02:00
parent 0a4caa5b6b
commit 7d789421e3
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ func (d *DropDown) GetFieldWidth() int {
// callback is called when this option was selected. It may be nil.
func (d *DropDown) AddOption(text string, selected func()) *DropDown {
d.options = append(d.options, &dropDownOption{Text: text, Selected: selected})
d.list.AddItem(text, "", 0, selected)
d.list.AddItem(text, "", 0, nil)
return d
}