Effect big_dynamic will now be shown with clock.

This commit is contained in:
Fabian Schlenz 2019-09-25 06:28:53 +02:00
parent aa11f5ed8a
commit 6ba2854a8d
2 changed files with 5 additions and 0 deletions

View File

@ -28,4 +28,5 @@ private:
public:
void loop();
~BigDynamicEffect();
boolean can_be_shown_with_clock() override;
};

View File

@ -59,3 +59,7 @@ void BigDynamicEffect::loop() {
}*/
}
}
boolean BigDynamicEffect::can_be_shown_with_clock() {
return true;
}