Wrapping last punctuation if there are continuous punctuation symbols (#8139)

This commit is contained in:
runzh-crypto 2025-02-27 16:46:34 +08:00
parent 8bd3e20c86
commit b7d8140b75

View file

@ -4004,7 +4004,14 @@ const char* ImFont::CalcWordWrapPositionA(float scale, const char* text, const c
}
// Allow wrapping after punctuation.
inside_word = (c != '.' && c != ',' && c != ';' && c != '!' && c != '?' && c != '\"');
unsigned int next_c = (unsigned int)*next_s;
bool current_is_punctuation = (c == '.' || c == ',' || c == ';' || c == '!' || c == '?' || c == '\"');
bool next_is_punctuation = (next_c == '.' || next_c == ',' || next_c == ';' || next_c == '!' || next_c == '?' || next_c == '\"');
if (current_is_punctuation && !next_is_punctuation) {
inside_word = false;
} else {
inside_word = true;
}
}
// We ignore blank width at the end of the line (they can be skipped)