mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +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 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);
|
||||
|
||||
figureFontDims();
|
||||
|
|
Loading…
Reference in a new issue