Fixed label escaping issue in ErrorDialogue instance

This commit is contained in:
Nav
2022-09-14 20:06:26 +01:00
parent e7261f866f
commit beae66e477

View File

@@ -323,7 +323,7 @@ namespace Bloom::Widgets
auto* errorDialogue = new ErrorDialogue(
"Invalid Memory Region",
"Invalid memory region \"" + focusedRegionItem->getRegionNameInputValue() + "\""
+ "<br/><br/>- " + validationFailures.join("<br/>- "),
+ "\n\n- " + validationFailures.join("\n- "),
this
);
errorDialogue->show();