CCDraw: simplified statement for blink init

Origin commit data
------------------
Commit: 82d39dd09f
Author: Thilo Graf <dbt@novatux.de>
Date: 2017-01-23 (Mon, 23 Jan 2017)
This commit is contained in:
2017-01-23 20:34:54 +01:00
committed by Michael Liebmann
parent ec017b0782
commit 356c6d8749

View File

@@ -732,10 +732,10 @@ void CCDraw::enableShadow(int mode, const int& shadow_width, bool force_paint)
void CCDraw::paintTrigger()
{
if (!is_painted)
paint1();
else
if (is_painted)
hide();
else
paint();
}
bool CCDraw::paintBlink(CComponentsTimer* Timer)