From f57c77bbc32c87c1de740948e2a2ed1e4d447c57 Mon Sep 17 00:00:00 2001 From: "[CST] Focus" Date: Thu, 14 Mar 2013 19:11:21 +0400 Subject: [PATCH] gui/channellist.cpp: add comment about PiG mode with still image displayed --- src/gui/channellist.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/gui/channellist.cpp b/src/gui/channellist.cpp index 797a28fa4..aafd718c2 100644 --- a/src/gui/channellist.cpp +++ b/src/gui/channellist.cpp @@ -2086,12 +2086,18 @@ void CChannelList::paint() // paint box for miniTV again - important! frameBuffer->paintBoxRel(x+width, y+theight , pig_width, pig_height, COL_MENUCONTENT_PLUS_0); // 5px offset - same value as in list below +#if 0 + /* focus: its possible now to scale video with still image, but on nevis + artifacts possible on SD osd */ + paint_pig(x+width+5, y+theight+5, pig_width-10, pig_height-10); +#else if(CNeutrinoApp::getInstance()->getMode() == NeutrinoMessages::mode_tv) { paint_pig(x+width+5, y+theight+5, pig_width-10, pig_height-10); } else if(CNeutrinoApp::getInstance()->getMode() == NeutrinoMessages::mode_radio) { g_PicViewer->DisplayImage(DATADIR "/neutrino/icons/radiomode.jpg", x+width+5, y+theight+5, pig_width-10, pig_height-10, frameBuffer->TM_NONE); } +#endif } }