Cache text property when toggling BBCode
This commit is contained in:
parent
1538b870f1
commit
95feb6bb82
2 changed files with 10 additions and 0 deletions
|
@ -2741,8 +2741,17 @@ void RichTextLabel::set_use_bbcode(bool p_enable) {
|
||||||
if (use_bbcode == p_enable) {
|
if (use_bbcode == p_enable) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (p_enable) {
|
||||||
|
cached_text = get_text();
|
||||||
|
}
|
||||||
|
|
||||||
use_bbcode = p_enable;
|
use_bbcode = p_enable;
|
||||||
set_bbcode(bbcode);
|
set_bbcode(bbcode);
|
||||||
|
|
||||||
|
if (!p_enable) {
|
||||||
|
set_text(cached_text);
|
||||||
|
}
|
||||||
property_list_changed_notify();
|
property_list_changed_notify();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -408,6 +408,7 @@ private:
|
||||||
|
|
||||||
bool use_bbcode;
|
bool use_bbcode;
|
||||||
String bbcode;
|
String bbcode;
|
||||||
|
String cached_text;
|
||||||
|
|
||||||
int fixed_width;
|
int fixed_width;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue