Just updated to the latest 1.4.0.0 to be able to to control text selection (disable it). Thanks for that. Then I noticed that certain texts within table got the first pixel clipped off. I've constructed a simple example, HTML and CSS:
![Image]()
It looks like only some letter get clipped (for instance A, V and W) and others still display fine (like I and P).
<body>
<table>
<tr><td>A brown dog jumped over a lazy fox</td></tr>
</table>
</body>
body { font: 8pt Tahoma; color: #eee; margin: 0px; padding: 0px; }
table { border: none; border-collapse: collapse; }
tr,td { border: none; padding: 0px; spacing: 0px; }
Using this (some of the CSS may be irrelevant) it fails displaying correctly:
It looks like only some letter get clipped (for instance A, V and W) and others still display fine (like I and P).