Skip to content

Commit bf0d3f2

Browse files
authored
chore: fix packages (#13780)
* chore: fix packages * chore: use fix package versions * chore: fix tableview test * revert test + tableview post * chore: add new node-titanium-sdk
1 parent 9be6c33 commit bf0d3f2

File tree

3 files changed

+8421
-11059
lines changed

3 files changed

+8421
-11059
lines changed

android/modules/ui/src/java/ti/modules/titanium/ui/widget/tableview/TiTableView.java

+1-6
Original file line numberDiff line numberDiff line change
@@ -749,12 +749,7 @@ public void run()
749749
}
750750

751751
// Notify adapter of changes on UI thread.
752-
recyclerView.post(newRunnable() {
753-
publicvoidrun()
754-
{
755-
adapter.update(rows, force);
756-
}
757-
});
752+
this.adapter.update(rows, force);
758753

759754
// FIXME: This is not an ideal workaround for an issue where recycled items that were in focus
760755
// lose their focus when the data set changes. There are improvements to be made here.

0 commit comments

Comments
 (0)
close