From 91b8b34a519c08595dbee9f46ee6bbfa631088bf Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Sun, 29 Sep 2013 22:46:57 +0200 Subject: [PATCH] CComponentsPIP: fix x position pig_x+2 was wrong. --- src/gui/components/cc_item_tvpic.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/components/cc_item_tvpic.cpp b/src/gui/components/cc_item_tvpic.cpp index e06b7fb97..ac3e94fde 100644 --- a/src/gui/components/cc_item_tvpic.cpp +++ b/src/gui/components/cc_item_tvpic.cpp @@ -89,7 +89,7 @@ void CComponentsPIP::paint(bool do_save_bg) } if(CNeutrinoApp::getInstance()->getMode() == NeutrinoMessages::mode_tv){ - videoDecoder->Pig(pig_x+2, pig_y, pig_w, pig_h, screen_w, screen_h); + videoDecoder->Pig(pig_x, pig_y, pig_w, pig_h, screen_w, screen_h); } else{ //paint an alternate image if no tv mode available CComponentsPicture pic = CComponentsPicture (pig_x, pig_y, pig_w, pig_h, pic_name, CC_ALIGN_LEFT);