mirror of
https://github.com/ocornut/imgui.git
synced 2025-04-05 05:25:08 +00:00
Wrapping last punctuation if there are continuous punctuation symbols (#8139)
This commit is contained in:
parent
8bd3e20c86
commit
b7d8140b75
1 changed files with 8 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue