Commit 68cbd47
fix: FillDataTableAsync must not use ConfigureAwait(false)
DataTable/DataGridView mutations must happen on the UI thread.
ConfigureAwait(false) was scheduling FlushBatch on a thread-pool
thread, so the DataGridView never received the bound changes.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>1 parent 810b670 commit 68cbd47
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
191 | 191 | | |
192 | 192 | | |
193 | 193 | | |
194 | | - | |
| 194 | + | |
195 | 195 | | |
196 | 196 | | |
197 | 197 | | |
| |||
0 commit comments