mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
GUI: Add a resolution property for layouts
This commit is contained in:
parent
9acaed1f89
commit
6c5c6f8140
@ -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")) {
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user