From 802ae6a6139f20895cb341d168006451c5856baa Mon Sep 17 00:00:00 2001 From: bluepilledgreat <97983689+bluepilledgreat@users.noreply.github.com> Date: Thu, 23 Jan 2025 14:28:14 +0000 Subject: [PATCH] fix being unable to apply transforms on grids --- Bloxstrap/UI/Elements/Bootstrapper/CustomDialog.Elements.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Bloxstrap/UI/Elements/Bootstrapper/CustomDialog.Elements.cs b/Bloxstrap/UI/Elements/Bootstrapper/CustomDialog.Elements.cs index 339003c..2040b62 100644 --- a/Bloxstrap/UI/Elements/Bootstrapper/CustomDialog.Elements.cs +++ b/Bloxstrap/UI/Elements/Bootstrapper/CustomDialog.Elements.cs @@ -704,6 +704,10 @@ namespace Bloxstrap.UI.Elements.Bootstrapper HandleXmlElement_Grid_ColumnDefinitions(grid, dialog, element); } + else if (element.Name.ToString().StartsWith("Grid.")) + { + continue; // ignore others + } else { var uiElement = HandleXml(dialog, element);