diff --git a/rsrc/dialogs/edit-sign.xml b/rsrc/dialogs/edit-sign.xml index c25e94c3..16fc2cf1 100644 --- a/rsrc/dialogs/edit-sign.xml +++ b/rsrc/dialogs/edit-sign.xml @@ -4,7 +4,7 @@ - Use a '|' to indicate a line break. + Use a '|' to indicate a line break. Editing Sign diff --git a/rsrc/schemas/dialog.xsd b/rsrc/schemas/dialog.xsd index b69078a1..2dfd2bad 100644 --- a/rsrc/schemas/dialog.xsd +++ b/rsrc/schemas/dialog.xsd @@ -186,6 +186,7 @@ + diff --git a/src/dialogxml/widgets/message.cpp b/src/dialogxml/widgets/message.cpp index 60f8f0f0..58e67f98 100644 --- a/src/dialogxml/widgets/message.cpp +++ b/src/dialogxml/widgets/message.cpp @@ -65,6 +65,9 @@ bool cTextMsg::parseAttribute(ticpp::Attribute& attr, std::string tagName, std:: else if(val == "left") right_align = false; else throw xBadVal(tagName, attr.Name(), val, attr.Row(), attr.Column(), fname); return true; + }else if(attr.Name() == "show-pipes"){ + style.showPipes = str_to_bool(attr.Value()); + return true; } return cControl::parseAttribute(attr, tagName, fname); }