revert change that broke board updating on 2.3.7. Yay for git

bisect!!!!
This commit is contained in:
Eric House 2016-07-05 20:17:55 -07:00
parent 9dc50c9aa8
commit a86ff8b7b0

View file

@ -321,10 +321,10 @@ public class BoardView extends View implements BoardHandler, SyncedDraw {
}
}
// Force update now that we have bits to copy
if ( drew ) {
m_parent.runOnUiThread( m_invalidator );
}
// Force update now that we have bits to copy. I don't know why (yet),
// but on older versions of Android we need to run this even if drew
// is false
m_parent.runOnUiThread( m_invalidator );
}
public void dimsChanged( BoardDims dims )