mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-28 16:01:10 +02:00
patch for width logos
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@576 e54a6e83-5905-42d5-8d5c-058d10e6a962
Origin commit data
------------------
Branch: ni/coolstream
Commit: 0dd250e707
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2010-05-09 (Sun, 09 May 2010)
------------------
This commit was generated by Migit
This commit is contained in:
@@ -578,9 +578,14 @@ int CEpgData::show(const t_channel_id channel_id, uint64_t a_id, time_t* a_start
|
||||
tallchans_iterator cit = allchans.find(channel_id);
|
||||
if(cit != allchans.end()) {
|
||||
std::string lname;
|
||||
if(g_PicViewer->GetLogoName(channel_id, cit->second.getName(), lname)) {
|
||||
g_PicViewer->DisplayImage(lname, sx+10, sy + (toph-PIC_H)/2/*5*/, PIC_W, PIC_H);
|
||||
pic_offx = PIC_W + 10;
|
||||
int logo_w = 0;
|
||||
int logo_h = 0;
|
||||
if(g_PicViewer->GetLogoName(channel_id, cit->second.getName(), lname, &logo_w, &logo_h)) {
|
||||
if(logo_h > PIC_H)
|
||||
logo_h = PIC_H;
|
||||
|
||||
g_PicViewer->DisplayImage(lname, sx+10, sy + (toph-logo_h)/2/*5*/, logo_w, logo_h);
|
||||
pic_offx = logo_w + 10;
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user