mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-04 23:02:02 +01:00
don't draw tile that's the source of a drag.
This commit is contained in:
parent
00e8742ad8
commit
6e08bbc9ce
1 changed files with 1 additions and 1 deletions
|
@ -350,7 +350,7 @@ public class BoardView extends View implements DrawCtx, BoardHandler,
|
||||||
{
|
{
|
||||||
int backColor;
|
int backColor;
|
||||||
int foreColor = WHITE; // must be initialized :-(
|
int foreColor = WHITE; // must be initialized :-(
|
||||||
boolean empty = null == text && null == bitmaps;
|
boolean empty = 0 != (flags & (CELL_DRAGSRC|CELL_ISEMPTY));
|
||||||
boolean pending = 0 != (flags & CELL_HIGHLIGHT);
|
boolean pending = 0 != (flags & CELL_HIGHLIGHT);
|
||||||
|
|
||||||
figureFontDims();
|
figureFontDims();
|
||||||
|
|
Loading…
Reference in a new issue