Fixed label escaping issue in ErrorDialogue instance
This commit is contained in:
@@ -323,7 +323,7 @@ namespace Bloom::Widgets
|
|||||||
auto* errorDialogue = new ErrorDialogue(
|
auto* errorDialogue = new ErrorDialogue(
|
||||||
"Invalid Memory Region",
|
"Invalid Memory Region",
|
||||||
"Invalid memory region \"" + focusedRegionItem->getRegionNameInputValue() + "\""
|
"Invalid memory region \"" + focusedRegionItem->getRegionNameInputValue() + "\""
|
||||||
+ "<br/><br/>- " + validationFailures.join("<br/>- "),
|
+ "\n\n- " + validationFailures.join("\n- "),
|
||||||
this
|
this
|
||||||
);
|
);
|
||||||
errorDialogue->show();
|
errorDialogue->show();
|
||||||
|
|||||||
Reference in New Issue
Block a user