diff options
author | David Crespo <david.crespo@correounivalle.edu.co> | 2023-10-05 23:50:38 -0500 |
---|---|---|
committer | David Crespo <david.crespo@correounivalle.edu.co> | 2023-10-31 14:39:57 -0500 |
commit | 0be873bed22315e296bfb18ad90c39c74d52a687 (patch) | |
tree | bb00a10406205dfb3cfbe1ccc7df149cb297e18d /scene/gui/label.cpp | |
parent | 8fc215893af3ea54a8fbd001caee0ce968d206d9 (diff) | |
download | redot-engine-0be873bed22315e296bfb18ad90c39c74d52a687.tar.gz |
Add compability rename of (v)align properties of Label
Diffstat (limited to 'scene/gui/label.cpp')
-rw-r--r-- | scene/gui/label.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/scene/gui/label.cpp b/scene/gui/label.cpp index 0d48cb1549..d9177c75ba 100644 --- a/scene/gui/label.cpp +++ b/scene/gui/label.cpp @@ -673,6 +673,19 @@ Size2 Label::get_minimum_size() const { } } +#ifndef DISABLE_DEPRECATED +bool Label::_set(const StringName &p_name, const Variant &p_value) { + if (p_name == SNAME("valign")) { + set_vertical_alignment((VerticalAlignment)p_value.operator int()); + return true; + } else if (p_name == SNAME("align")) { + set_horizontal_alignment((HorizontalAlignment)p_value.operator int()); + return true; + } + return false; +} +#endif + int Label::get_line_count() const { if (!is_inside_tree()) { return 1; |