Skip to content

Commit

Permalink
Fix missing code in float64 lists
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacalz committed Jan 27, 2025
1 parent 4b8b4cd commit 4010b78
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions data/binding/bindlists.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,8 @@ func BindFloatList(v *[]float64) ExternalFloatList {
}

b := newListComparable[float64]()
b.val = v
b.updateExternal = true

for i := range *v {
b.appendItem(bindListItemComparable(v, i, b.updateExternal))
Expand Down

0 comments on commit 4010b78

Please sign in to comment.