Markdown: remove redundant int cast
For #25641 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
84de7a8d63
commit
4d7c4b3d2f
|
@ -126,7 +126,7 @@ class MarkDown extends TXT {
|
|||
$nextLineStart -= $actualFontSize;
|
||||
}
|
||||
} else {
|
||||
$y -= (int)$fontSize;
|
||||
$y -= $fontSize;
|
||||
imagestring($image, 1, $x, $y, $line, $textColor);
|
||||
$nextLineStart = $fontSize;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue