Fix typo that prevents user roll templates from having a customisable length (#263)

This commit is contained in:
Merikei
2025-12-10 18:38:44 +00:00
committed by GitHub
parent 6c10571ba4
commit 7f1fa64114
+1 -1
View File
@@ -254,7 +254,7 @@ namespace glabels
XmlUtil::setLengthAttr( node, "width", frame->w() ); XmlUtil::setLengthAttr( node, "width", frame->w() );
XmlUtil::setLengthAttr( node, "height", frame->h() ); XmlUtil::setLengthAttr( node, "height", frame->h() );
XmlUtil::setLengthAttr( node, "min_height", frame->hMin() ); XmlUtil::setLengthAttr( node, "min_height", frame->hMin() );
XmlUtil::setLengthAttr( node, "max_height", frame->hMin() ); XmlUtil::setLengthAttr( node, "max_height", frame->hMax() );
XmlUtil::setLengthAttr( node, "default_height", frame->hDefault() ); XmlUtil::setLengthAttr( node, "default_height", frame->hDefault() );
createLabelNodeCommon( node, frame ); createLabelNodeCommon( node, frame );