Override `text` setter behavior
Opened this issue · 0 comments
daenvil commented
Override the text
property setter so it modifies the markdown_text
property instead of the inherited text
property.
This would make the usage consistent with the other label nodes, as with both Label and RichTextLabel you do label.text = "something"
, while this is useless in MarkdownLabel, where you currently need to do label.markdown_text = "something"
.