summaryrefslogtreecommitdiffstats
path: root/scene/gui/graph_edit.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-02-09 12:12:41 +0100
committerRémi Verschelde <rverschelde@gmail.com>2024-02-09 12:12:41 +0100
commit86ffe9246758cccaff39ac006eebb9a60f3a07c2 (patch)
treee25fb2b4795f3ffec816349a7080ef95f3406a24 /scene/gui/graph_edit.cpp
parent41564aaf7708b0bf594f745dd2448a54dd687cc5 (diff)
parentd3852deaa450d77edb30df2bb1c77bd7bc45befc (diff)
downloadredot-engine-86ffe9246758cccaff39ac006eebb9a60f3a07c2.tar.gz
Merge pull request #68420 from RedMser/config-warning-prop
Allow configuration warnings to refer to a property
Diffstat (limited to 'scene/gui/graph_edit.cpp')
-rw-r--r--scene/gui/graph_edit.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/gui/graph_edit.cpp b/scene/gui/graph_edit.cpp
index c23d21775f..7ea3aa344a 100644
--- a/scene/gui/graph_edit.cpp
+++ b/scene/gui/graph_edit.cpp
@@ -251,8 +251,8 @@ Control::CursorShape GraphEdit::get_cursor_shape(const Point2 &p_pos) const {
return Control::get_cursor_shape(p_pos);
}
-PackedStringArray GraphEdit::get_configuration_warnings() const {
- PackedStringArray warnings = Control::get_configuration_warnings();
+Array GraphEdit::get_configuration_warnings() const {
+ Array warnings = Control::get_configuration_warnings();
warnings.push_back(RTR("Please be aware that GraphEdit and GraphNode will undergo extensive refactoring in a future 4.x version involving compatibility-breaking API changes."));