diff options
| author | Jeff Carr <[email protected]> | 2025-03-19 06:40:40 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-03-19 06:40:40 -0500 |
| commit | 5ef3364bf1d37c94be2554389caabf58949e0304 (patch) | |
| tree | 6dece2c5433dac4708ace22f47b964e198eb7b70 | |
| parent | 0288d05f2d23ed781eb250ac34320de1d1765951 (diff) | |
now using the awesome golang 1.24 'iter'v0.22.26
| -rw-r--r-- | table.go | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -28,9 +28,7 @@ func (me *TreeInfo) doTable(a widget.Action) { return } log.Info("tree.doTables() start. # of tables:", len(pb.Tables)) - all := pb.All() - for all.Scan() { - t := all.Next() + for t := range pb.IterAll() { // for i, o := range t.Order { // log.Info("got order:", t.Title, i, o) // } |
