Correct x position in cRecMenuItemEvent::Draw

This commit is contained in:
kamel5 2019-03-25 16:17:26 +01:00
parent 7ca598f64e
commit f56219c93c
1 changed files with 2 additions and 1 deletions

View File

@ -1832,8 +1832,9 @@ void cRecMenuItemEvent::Draw(void) {
if (imgLoader.LoadLogo(channel, logoWidth, height)) {
cImage logo = imgLoader.GetImage();
pixmapText->DrawImage(cPoint(logoX, (height - logo.Height()) / 2), logo);
logoX += logoWidth + 5;
// logoX += logoWidth + 5;
}
logoX += logoWidth + 5;
}
int textX = logoX;