Editor

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
pappeste
2021-06-28 15:13:11 -07:00
committed by Esteban Papp
parent 67a5bc98ce
commit 9c5b2768e2
2 changed files with 2 additions and 2 deletions
@@ -56,7 +56,7 @@ private:
inline void GetQColorFromXmlNode(QColor& colorOut, const XmlNodeRef& xmlNode) const
{
QRgb rgb = -1;
QRgb rgb = std::numeric_limits<unsigned int>::max();
xmlNode->getAttr("color", rgb);
colorOut.setRgb(rgb);
};