mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-12 08:47:50 +01:00
fix bug on (high-res screens that can't do tiny font) where value was
drawn too low.
This commit is contained in:
parent
f063ef165b
commit
09f044a0d4
1 changed files with 1 additions and 1 deletions
|
@ -513,7 +513,7 @@ palm_draw_drawTile( DrawCtx* p_dctx, XP_Rect* rect,
|
||||||
} else {
|
} else {
|
||||||
width = FntCharsWidth( valBuf, len );
|
width = FntCharsWidth( valBuf, len );
|
||||||
WinDrawChars( valBuf, len, localR.left + localR.width - width,
|
WinDrawChars( valBuf, len, localR.left + localR.width - width,
|
||||||
localR.top + localR.height - dctx->fntHeight - 1 );
|
localR.top + localR.height - (10*doubler) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue