mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
Added support for including theme files from within the colorScheme and fontSize tag pairs
This commit is contained in:
parent
63e9586d88
commit
4d245c955f
|
@ -1889,8 +1889,10 @@ void ThemeData::parseColorSchemes(const pugi::xml_node& root)
|
|||
<< "\" is not defined in capabilities.xml";
|
||||
}
|
||||
|
||||
if (mSelectedColorScheme == viewKey)
|
||||
if (mSelectedColorScheme == viewKey) {
|
||||
parseVariables(node);
|
||||
parseIncludes(node);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1926,8 +1928,10 @@ void ThemeData::parseFontSizes(const pugi::xml_node& root)
|
|||
<< "\" is not defined in capabilities.xml";
|
||||
}
|
||||
|
||||
if (mSelectedFontSize == viewKey)
|
||||
if (mSelectedFontSize == viewKey) {
|
||||
parseVariables(node);
|
||||
parseIncludes(node);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue