diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-08-02 16:24:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-02 16:24:51 +0200 |
commit | 344b4c7f215e549e7848e6e9bacdcfa7f37a2a02 (patch) | |
tree | 66365b5b8c85435a264341d9e9d371a767966c92 | |
parent | 0f9e84feab42473b19699372961a81ad2f801c63 (diff) | |
parent | 9a2758e374ae674adafca178ab726fb7b5cdbd5a (diff) |
Merge pull request #63824 from KoBeWi/bidi_slots
-rw-r--r-- | scene/gui/graph_node.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/gui/graph_node.cpp b/scene/gui/graph_node.cpp index 92016ca42e..c5054525a7 100644 --- a/scene/gui/graph_node.cpp +++ b/scene/gui/graph_node.cpp @@ -1051,6 +1051,7 @@ void GraphNode::_bind_methods() { ADD_GROUP("BiDi", ""); ADD_PROPERTY(PropertyInfo(Variant::INT, "text_direction", PROPERTY_HINT_ENUM, "Auto,Left-to-Right,Right-to-Left,Inherited"), "set_text_direction", "get_text_direction"); ADD_PROPERTY(PropertyInfo(Variant::STRING, "language", PROPERTY_HINT_LOCALE_ID, ""), "set_language", "get_language"); + ADD_GROUP("", ""); ADD_SIGNAL(MethodInfo("position_offset_changed")); ADD_SIGNAL(MethodInfo("slot_updated", PropertyInfo(Variant::INT, "idx"))); |