Skip to content

Commit

Permalink
[TIMOB-25471] Fix TableView message handler
Browse files Browse the repository at this point in the history
  • Loading branch information
Gary Mathews committed Nov 11, 2017
1 parent 58ffbd5 commit 37ecb70
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -856,6 +856,9 @@ public void scrollToTop(int index)
@Override
public boolean handleMessage(Message msg)
{
if (getTableView() == null) {
return false;
}
if (msg.what == MSG_UPDATE_VIEW) {
getTableView().updateView();
((AsyncResult) msg.obj).setResult(null);
Expand Down

0 comments on commit 37ecb70

Please sign in to comment.