Merge branch '63-add-badges-decals-e-g-for-favorites-completed-games-non-working-games-collections-and-folders' into 575-theme-add-a-modern-clean-switch-like-theme-as-an-official-theme-in-es-de-to-choose-from

This commit is contained in:
Sophia Hadash 2021-09-26 23:04:38 +02:00
commit 2649939f0f
4 changed files with 7 additions and 5 deletions

View file

@ -37,8 +37,9 @@ class Window;
class GuiComponent
{
public:
GuiComponent(Window* window);
virtual ~GuiComponent();
GuiComponent(Window *window);
virtual ~GuiComponent() noexcept;
virtual void textInput(const std::string& text);

View file

@ -51,6 +51,7 @@ BadgesComponent::BadgesComponent(Window *window)
}
BadgesComponent::~BadgesComponent() {
mChildren.clear();
mBadgeIcons.clear();
mImageComponents.clear();
}

View file

@ -121,12 +121,12 @@ void FlexboxComponent::computeLayout()
float y = anchorY - anchorOriginY * size.y;
// Apply item margin.
if ((mDirection == "row" && i % std::max(1, (int) mItemsPerLine) != 0) ||
/*if ((mDirection == "row" && i % std::max(1, (int) mItemsPerLine) != 0) ||
(mDirection == "column" && i >= (int) mItemsPerLine))
x += mItemMargin.x * (directionLine.x >= 0.0f ? 1.0f : -1.0f);
if ((mDirection == "column" && i % std::max(1, (int) mItemsPerLine) != 0) ||
(mDirection == "row" && i >= (int) mItemsPerLine))
y += mItemMargin.y * (directionLine.y >= 0.0f ? 1.0f : -1.0f);
y += mItemMargin.y * (directionLine.y >= 0.0f ? 1.0f : -1.0f);*/
// Apply alignment
if (mAlign == ITEM_ALIGN_END) {

View file

@ -47,7 +47,7 @@ public:
void rasterizeAt(size_t width, size_t height);
glm::vec2 getSourceImageSize() const { return mSourceSize; }
virtual ~TextureResource();
virtual ~TextureResource() noexcept;
bool isInitialized() const { return true; }
bool isTiled() const;