mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-04-10 19:15:13 +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 "Log.h"
|
||||||
#include "Settings.h"
|
#include "Settings.h"
|
||||||
#include "components/ImageComponent.h"
|
#include "components/ImageComponent.h"
|
||||||
#include "components/LottieAnimComponent.h"
|
|
||||||
#include "components/TextComponent.h"
|
#include "components/TextComponent.h"
|
||||||
#include "utils/FileSystemUtil.h"
|
#include "utils/FileSystemUtil.h"
|
||||||
#include "utils/StringUtil.h"
|
#include "utils/StringUtil.h"
|
||||||
|
@ -462,8 +461,6 @@ std::vector<GuiComponent*> ThemeData::makeExtras(const std::shared_ptr<ThemeData
|
||||||
comp = new ImageComponent;
|
comp = new ImageComponent;
|
||||||
else if (t == "text")
|
else if (t == "text")
|
||||||
comp = new TextComponent;
|
comp = new TextComponent;
|
||||||
else if (t == "animation")
|
|
||||||
comp = new LottieAnimComponent;
|
|
||||||
|
|
||||||
if (comp) {
|
if (comp) {
|
||||||
comp->setDefaultZIndex(10.0f);
|
comp->setDefaultZIndex(10.0f);
|
||||||
|
|
Loading…
Reference in a new issue