--- control-image.c~ 2007-05-18 14:08:11.000000000 +0200 +++ control-image.c 2007-06-09 16:40:18.000000000 +0200 @@ -251,7 +251,11 @@ void cImageControl::FadeIn(void) { +#if VDRVERSNUM >= 10500 + SetNeedsFastResponse(true); +#else needsFastResponse = true; +#endif int i; int alpha = 0; @@ -279,13 +283,21 @@ fd--; } +#if VDRVERSNUM >= 10500 + SetNeedsFastResponse(false); +#else needsFastResponse = false; +#endif } void cImageControl::FadeOut(void) { +#if VDRVERSNUM >= 10500 + SetNeedsFastResponse(true); +#else needsFastResponse = true; +#endif int i; int alpha = 255; @@ -312,7 +324,11 @@ fd--; } +#if VDRVERSNUM >= 10500 + SetNeedsFastResponse(false); +#else needsFastResponse = false; +#endif }