GUI: Add a resolution property for layouts

This commit is contained in:
Cameron Cawley 2023-03-16 16:57:52 +00:00 committed by Eugene Sandulenko
parent 9acaed1f89
commit 6c5c6f8140
2 changed files with 6 additions and 0 deletions

View File

@ -813,6 +813,11 @@ bool ThemeParser::parserCallback_import(ParserNode *node) {
}
bool ThemeParser::parserCallback_layout(ParserNode *node) {
if (resolutionCheck(node->values["resolution"]) == false) {
node->ignore = true;
return true;
}
int spacing = -1;
if (node->values.contains("spacing")) {

View File

@ -204,6 +204,7 @@ protected:
XML_PROP(align, false)
XML_PROP(padding, false)
XML_PROP(spacing, false)
XML_PROP(resolution, false)
XML_KEY(import)
XML_PROP(layout, true)