add newline feature to the text node, add about window with credits, add about menu with submenus

This commit is contained in:
2018-09-22 19:23:17 +02:00
parent fd8d6ff2d1
commit 3191730c31
18 changed files with 255 additions and 32 deletions

View File

@@ -54,7 +54,7 @@ void NodeText::parse_attributes(kAttribute ka, const tinyxml2::XMLAttribute* att
switch (ka)
{
case kAttribute::Text:
m_text = attr->Value();
m_text = unescape(attr->Value());
break;
case kAttribute::FontFace:
m_font = attr->Value();