mirror of
https://projects.vdr-developer.org/git/vdr-plugin-tvguide.git
synced 2023-10-05 15:01:48 +02:00
Better fit channel logo in search result
This commit is contained in:
parent
519a87a471
commit
5638c408c1
@ -1878,12 +1878,11 @@ void cRecMenuItemEvent::Draw(void) {
|
||||
if (channel)
|
||||
channelName = channel->Name();
|
||||
int logoWidth = height * config.logoWidthRatio / config.logoHeightRatio;
|
||||
cImageLoader imgLoader;
|
||||
if (!config.hideChannelLogos) {
|
||||
if (imgLoader.LoadLogo(channel, logoWidth, height)) {
|
||||
cImageLoader imgLoader;
|
||||
if (imgLoader.LoadLogo(channel, logoWidth * 0.8, height * 0.8)) {
|
||||
cImage logo = imgLoader.GetImage();
|
||||
pixmapText->DrawImage(cPoint(logoX, (height - logo.Height()) / 2), logo);
|
||||
// logoX += logoWidth + 5;
|
||||
pixmapText->DrawImage(cPoint(logoX + (logoWidth - logo.Width()) / 2, (height - logo.Height()) / 2), logo);
|
||||
}
|
||||
logoX += logoWidth + 5;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user