diff options
author | HaSa1002 <johawitt@outlook.de> | 2020-05-29 16:25:12 +0200 |
---|---|---|
committer | Johannes Witt <johawitt@outlook.de> | 2021-09-16 22:27:08 +0200 |
commit | 053b3b946c8373bbacf964af865fc4b9f89e8e2a (patch) | |
tree | 6845ddcb1322ad0d80cbe484b6a0a7bc845a8d19 /editor/plugins/asset_library_editor_plugin.cpp | |
parent | 191c34eb0d0d66fc6b5aac7d7f281fbd76171cd4 (diff) |
Remove bbcode_text from RichTextLabel
Also renames:
- append_bbcode -> append_text
- get_bbcode -> get_text
- set_bbcode -> set_text
- get_text -> get_parsed_text
Property text is:
set_text
get_text
Diffstat (limited to 'editor/plugins/asset_library_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/asset_library_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/asset_library_editor_plugin.cpp b/editor/plugins/asset_library_editor_plugin.cpp index 5405723d10..664b2f521e 100644 --- a/editor/plugins/asset_library_editor_plugin.cpp +++ b/editor/plugins/asset_library_editor_plugin.cpp @@ -230,7 +230,7 @@ void EditorAssetLibraryItemDescription::configure(const String &p_title, int p_a description->add_text(TTR("View Files")); description->pop(); description->add_text("\n" + TTR("Description:") + "\n\n"); - description->append_bbcode(p_description); + description->append_text(p_description); set_title(p_title); } |