diff --git a/src/dawn/scene/components/ui/text/UILabel.cpp b/src/dawn/scene/components/ui/text/UILabel.cpp index 214b4533..881705de 100644 --- a/src/dawn/scene/components/ui/text/UILabel.cpp +++ b/src/dawn/scene/components/ui/text/UILabel.cpp @@ -126,7 +126,7 @@ void UILabel::rebufferQuads(const std::vector newTexts) { // Determine font dimensions. auto itText = newTexts.begin(); while(itText != newTexts.end()) { - position.y = mathMax(position.y, itText->style.size * this->lineHeight); + position.y = mathMax(position.y, itText->style.size/* this->lineHeight - THIS PART WOULD TAKE THE LINE HEIGHT INTO CONSIDERATION ON THE FIRST/INITIAL LINE */); ++itText; } diff --git a/src/dawnshared/util/Xml.cpp b/src/dawnshared/util/Xml.cpp index 22d1dcc7..9dd94886 100644 --- a/src/dawnshared/util/Xml.cpp +++ b/src/dawnshared/util/Xml.cpp @@ -149,12 +149,18 @@ void Xml::load(Xml *xml, std::string data, size_t *j) { case XML_PARSE_STATE_PARSING_VALUE: // Keep parsing child until we find a < for an opening/closing tag. if(c == '<' && !(data[i] == '<' || data[i-2] == '<')) { - // In HTML Spec there could be a child here but not in XML spec. - doing = XML_PARSE_STATE_PARSING_CLOSE; - xml->value = buffer; - buffer.clear(); - valueIsInWhitespace = false; - bufferWhitespaces.clear(); + if(data[i] == '/') { + // In HTML Spec there could be a child here but not in XML spec. + doing = XML_PARSE_STATE_PARSING_CLOSE; + xml->value = buffer; + buffer.clear(); + valueIsInWhitespace = false; + bufferWhitespaces.clear(); + continue; + } + + std::cout << "Detected unsupported use of a child within a node value, e.g.
Hello world how are you?
" << std::endl; + throw "Test"; continue; } diff --git a/src/dawntools/vnscenetool/events/VNTextEventParser.cpp b/src/dawntools/vnscenetool/events/VNTextEventParser.cpp index e97efe2a..f1d05a2e 100644 --- a/src/dawntools/vnscenetool/events/VNTextEventParser.cpp +++ b/src/dawntools/vnscenetool/events/VNTextEventParser.cpp @@ -22,6 +22,9 @@ int32_t VNTextParser::onParse( struct VNText *out, std::string *error ) { + + std::cout << "TEST" << node->innerXml << std::endl; + out->language = values["lang"]; out->text = stringParser(node->innerXml, error); return error->length() == 0 ? 0 : -1;