You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-11 13:10:58 +00:00
fixed a autowrap bug when word is too length.
This commit is contained in:
@@ -136,10 +136,9 @@ void Label::_notification(int p_what) {
|
|||||||
if (!wc)
|
if (!wc)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
int c = 0;
|
||||||
int line=0;
|
int line=0;
|
||||||
while(wc) {
|
while(wc) {
|
||||||
|
|
||||||
/* handle lines not meant to be drawn quickly */
|
/* handle lines not meant to be drawn quickly */
|
||||||
if (line>line_to)
|
if (line>line_to)
|
||||||
break;
|
break;
|
||||||
@@ -486,7 +485,7 @@ void Label::regenerate_word_cache() {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((autowrap && line_width>=width && last_width<width) || insert_newline) {
|
if ((autowrap && line_width>=width && last && last->char_pos >= 0) || insert_newline) {
|
||||||
|
|
||||||
WordCache *wc = memnew( WordCache );
|
WordCache *wc = memnew( WordCache );
|
||||||
if (word_cache) {
|
if (word_cache) {
|
||||||
|
|||||||
Reference in New Issue
Block a user