mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-02-16 20:15:38 +00:00
Removed Lottie animation support for legacy themes.
This commit is contained in:
parent
ecdbf6d3d5
commit
978790956e
|
@ -13,7 +13,6 @@
|
|||
#include "Log.h"
|
||||
#include "Settings.h"
|
||||
#include "components/ImageComponent.h"
|
||||
#include "components/LottieAnimComponent.h"
|
||||
#include "components/TextComponent.h"
|
||||
#include "utils/FileSystemUtil.h"
|
||||
#include "utils/StringUtil.h"
|
||||
|
@ -462,8 +461,6 @@ std::vector<GuiComponent*> ThemeData::makeExtras(const std::shared_ptr<ThemeData
|
|||
comp = new ImageComponent;
|
||||
else if (t == "text")
|
||||
comp = new TextComponent;
|
||||
else if (t == "animation")
|
||||
comp = new LottieAnimComponent;
|
||||
|
||||
if (comp) {
|
||||
comp->setDefaultZIndex(10.0f);
|
||||
|
|
Loading…
Reference in a new issue