AsyncUpdateTable updates the display for asynchronous updating from other goroutines. Also updates indexview (calling Sequential).
()
| 147 | // AsyncUpdateTable updates the display for asynchronous updating from |
| 148 | // other goroutines. Also updates indexview (calling Sequential). |
| 149 | func (tb *Table) AsyncUpdateTable() { |
| 150 | tb.AsyncLock() |
| 151 | tb.Table.Sequential() |
| 152 | tb.ScrollToIndexNoUpdate(tb.SliceSize - 1) |
| 153 | tb.Update() |
| 154 | tb.AsyncUnlock() |
| 155 | } |
| 156 | |
| 157 | // SetIndexView sets the source IndexView of a table (using a copy so original is not modified) |
| 158 | // and then configures the display |
nothing calls this directly
no test coverage detected