diff --git a/es-core/src/components/primary/GridComponent.h b/es-core/src/components/primary/GridComponent.h index 972188f53..134b0f460 100644 --- a/es-core/src/components/primary/GridComponent.h +++ b/es-core/src/components/primary/GridComponent.h @@ -385,7 +385,13 @@ void GridComponent::applyTheme(const std::shared_ptr& theme, const std::string& element, unsigned int properties) { + mSize.x = Renderer::getScreenWidth(); + mSize.y = Renderer::getScreenHeight() * 0.8; + GuiComponent::mPosition.x = 0.0f; + GuiComponent::mPosition.y = Renderer::getScreenHeight() * 0.1; + GuiComponent::applyTheme(theme, view, element, properties); + using namespace ThemeFlags; const ThemeData::ThemeElement* elem {theme->getElement(view, element, "grid")};