allow \n in single line text object
This commit is contained in:
parent
3d95502a1a
commit
5b8ccb4334
2 changed files with 4 additions and 1 deletions
|
|
@ -201,7 +201,7 @@ namespace MatterHackers.MatterControl.DesignTools
|
|||
|
||||
var textToWrite = MultiLine
|
||||
? MultiLineText.Value(this).Replace("\\n", "\n").Replace("\r", "\n")
|
||||
: NameToWrite.Value(this);
|
||||
: NameToWrite.Value(this).Replace("\\n", "\n").Replace("\r", "\n");
|
||||
|
||||
var pointSize = PointSize.Value(this);
|
||||
|
||||
|
|
|
|||
|
|
@ -6694,6 +6694,9 @@ Translated:Would you like to setup Wifi?
|
|||
English:Wouldn’t Slice Correctly
|
||||
Translated:Wouldn’t Slice Correctly
|
||||
|
||||
English:Wrap Lines
|
||||
Translated:Wrap Lines
|
||||
|
||||
English:Wrapping Indent
|
||||
Translated:Wrapping Indent
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue