Fix GraphEdit::frame_rect_changed signal parameter type

Changes the parameter type from Vector2 to Rect2, which is what is actually emitted.
This commit is contained in:
Caiman
2025-02-12 21:34:13 -05:00
committed by Rémi Verschelde
parent b607110ad2
commit bcd99bdb17
3 changed files with 9 additions and 2 deletions

View File

@ -319,3 +319,10 @@ GH-100913
Validate extension JSON: Error: Field 'classes/TextEdit/methods/get_line_column_at_pos/arguments': size changed value in new API, from 2 to 3.
Added optional argument to disallow positions that are outside the column range of the line. Compatibility method registered.
GH-102796
---------
Validate extension JSON: Error: Field 'classes/GraphEdit/signals/frame_rect_changed/arguments/1': type changed value in new API, from "Vector2" to "Rect2".
Previous type was incorrect. No compatibility system for signal arguments.