need to requestLayout(), not just invalidate(), after common code

layout is finished.
This commit is contained in:
Eric House 2013-11-10 08:37:28 -08:00
parent c9ba7b2fe1
commit f27e798966

View file

@ -311,7 +311,7 @@ public class BoardView extends View implements BoardHandler, SyncedDraw {
m_parent.runOnUiThread( new Runnable() {
public void run()
{
invalidate();
requestLayout();
}
});
}