diff options
author | Juan Linietsky <reduzio@gmail.com> | 2021-02-10 20:06:14 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-10 20:06:14 -0300 |
commit | ad293a82f1fc2e4baa35f54b9b8038df72d23737 (patch) | |
tree | 7edbd352cf34d87b4d8e604c1730251c38131e19 /scene/gui/rich_text_label.cpp | |
parent | e8f73124a7d97abc94cea3cf7fe5b5614f61a448 (diff) | |
parent | 1aa2823fa32c7a4b41d806418ec99949fc44ffb3 (diff) |
Merge pull request #45879 from reduz/remove-change-notify
Removed _change_notify(property)
Diffstat (limited to 'scene/gui/rich_text_label.cpp')
-rw-r--r-- | scene/gui/rich_text_label.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scene/gui/rich_text_label.cpp b/scene/gui/rich_text_label.cpp index 158f433967..f9f8f4f78a 100644 --- a/scene/gui/rich_text_label.cpp +++ b/scene/gui/rich_text_label.cpp @@ -3722,7 +3722,6 @@ void RichTextLabel::set_percent_visible(float p_percent) { } main->first_invalid_line = 0; //invalidate ALL _validate_line_caches(main); - _change_notify("visible_characters"); update(); } } @@ -3948,7 +3947,6 @@ void RichTextLabel::set_visible_characters(int p_visible) { percent_visible = (float)p_visible / (float)total_char_count; } } - _change_notify("percent_visible"); update(); } |