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