mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-08 05:24:39 +01:00
need to requestLayout(), not just invalidate(), after common code
layout is finished.
This commit is contained in:
parent
c9ba7b2fe1
commit
f27e798966
1 changed files with 1 additions and 1 deletions
|
@ -311,7 +311,7 @@ public class BoardView extends View implements BoardHandler, SyncedDraw {
|
||||||
m_parent.runOnUiThread( new Runnable() {
|
m_parent.runOnUiThread( new Runnable() {
|
||||||
public void run()
|
public void run()
|
||||||
{
|
{
|
||||||
invalidate();
|
requestLayout();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue