mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 10:22:45 -04:00
bracket newlines with close-open prpoperties symbols
This commit is contained in:
parent
4d0d86c7cb
commit
a43de758d2
@ -347,6 +347,13 @@ get_wtext() const {
|
|||||||
// characters, which may not exactly match the embedded
|
// characters, which may not exactly match the embedded
|
||||||
// properties characters of the original string, but it
|
// properties characters of the original string, but it
|
||||||
// will encode the same way.
|
// will encode the same way.
|
||||||
|
//
|
||||||
|
// Embedded properties characters will be closed before
|
||||||
|
// every newline, then reopened (if necessary) on the
|
||||||
|
// subsequent character following the newline. This
|
||||||
|
// means it will be safe to divide the text up at the
|
||||||
|
// newline characters and treat each line as an
|
||||||
|
// independent piece.
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
wstring TextAssembler::
|
wstring TextAssembler::
|
||||||
get_wordwrapped_wtext() const {
|
get_wordwrapped_wtext() const {
|
||||||
@ -358,6 +365,8 @@ get_wordwrapped_wtext() const {
|
|||||||
for (bi = _text_block.begin(); bi != _text_block.end(); ++bi) {
|
for (bi = _text_block.begin(); bi != _text_block.end(); ++bi) {
|
||||||
const TextRow &row = (*bi);
|
const TextRow &row = (*bi);
|
||||||
if (bi != _text_block.begin()) {
|
if (bi != _text_block.begin()) {
|
||||||
|
current_cprops->append_delta(wtext, _initial_cprops);
|
||||||
|
current_cprops = _initial_cprops;
|
||||||
wtext += '\n';
|
wtext += '\n';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user