fix: unable to select anything other than the first entry

This commit is contained in:
aditya-K2
2023-04-09 05:09:56 +05:30
parent 2a289e3d1a
commit 514869feff

View File

@@ -29,7 +29,7 @@ type CenteredWidget interface {
}
func (m *Main) AddCenteredWidget(t CenteredWidget) {
p := *(t.Primitive())
p := (t.Primitive())
closec := make(chan bool)
currentTime := time.Now().String()
sHandler := t.SelectionHandler()