dont show toneburst(MiniDiSEqC) setting when no diseqc is used
[enigma2.git] / lib / gdi / gpixmap.cpp
index 3e07bca05d2e36bca52705861fcfd981ac31c0f3..aaffbaa71c8743c16b18d9dcb2a5bbbe8650ea80 100644 (file)
@@ -180,11 +180,9 @@ void gPixmap::blit(const gPixmap &src, ePoint pos, const gRegion &clip, int flag
        for (unsigned int i=0; i<clip.rects.size(); ++i)
        {
                eRect area=eRect(pos, src.size());
-
-               if (!(flag & blitAlphaTest))  // HACK !!
-                       area&=clip.rects[i];
-
+               area&=clip.rects[i];
                area&=eRect(ePoint(0, 0), size());
+
                if ((area.width()<0) || (area.height()<0))
                        continue;