Markdown: remove redundant int cast

For #25641

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2021-02-15 10:29:54 +01:00
parent 84de7a8d63
commit 4d7c4b3d2f
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}