summaryrefslogtreecommitdiff
path: root/scene
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-02-09 09:29:27 +0100
committerRémi Verschelde <rverschelde@gmail.com>2023-02-09 09:29:27 +0100
commitedae21f3aa3391e1d0e1cb0998ecc2c82d2adf39 (patch)
tree77587d1e6d1cc5aff138bc98320e1ecef034f571 /scene
parent3fb3e560e9a7c74c5d959d35e3db5e7e350aa315 (diff)
parent4601acbaf43aae03aa6d26a17cac9016ee41e5a7 (diff)
Merge pull request #72897 from Geometror/graphedit-set-deprecated
Update configuration warning for `GraphEdit` and mark it as experimental
Diffstat (limited to 'scene')
-rw-r--r--scene/gui/graph_edit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/graph_edit.cpp b/scene/gui/graph_edit.cpp
index fe2eed6755..a6a2fb8d7c 100644
--- a/scene/gui/graph_edit.cpp
+++ b/scene/gui/graph_edit.cpp
@@ -193,7 +193,7 @@ void GraphEditMinimap::_adjust_graph_scroll(const Vector2 &p_offset) {
PackedStringArray GraphEdit::get_configuration_warnings() const {
PackedStringArray warnings = Control::get_configuration_warnings();
- warnings.push_back(RTR("Please be aware that GraphEdit and GraphNode will undergo extensive refactoring in a future beta version involving compatibility-breaking API changes."));
+ 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."));
return warnings;
}