diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-01-07 20:41:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-07 20:41:39 +0100 |
commit | c09c4e0154160f74f1d9889f74cd3e411ba7a08c (patch) | |
tree | 65cb70af7c58283456c3eae8cbabca5f49a6c830 /doc/classes | |
parent | 6e4da909aaa7ca70864016bac3a8fe424ee7194a (diff) | |
parent | 4c5ceb1a97324a0293c1334faa2eb4bc5855644c (diff) |
Merge pull request #56575 from HaSa1002/drag-signal-began
Rename GraphEdit `connection_drag_begun` to `connection_drag_started`
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/GraphEdit.xml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/classes/GraphEdit.xml b/doc/classes/GraphEdit.xml index be6d9e07c3..46960d7cc4 100644 --- a/doc/classes/GraphEdit.xml +++ b/doc/classes/GraphEdit.xml @@ -113,7 +113,7 @@ <return type="void" /> <description> Ends the creation of the current connection. In other words, if you are dragging a connection you can use this method to abort the process and remove the line that followed your cursor. - This is best used together with [signal connection_drag_begun] and [signal connection_drag_ended] to add custom behavior like node addition through shortcuts. + This is best used together with [signal connection_drag_started] and [signal connection_drag_ended] to add custom behavior like node addition through shortcuts. [b]Note:[/b] This method suppresses any other connection request signals apart from [signal connection_drag_ended]. </description> </method> @@ -249,7 +249,12 @@ Emitted at the beginning of a GraphNode movement. </description> </signal> - <signal name="connection_drag_begun"> + <signal name="connection_drag_ended"> + <description> + Emitted at the end of a connection drag. + </description> + </signal> + <signal name="connection_drag_started"> <argument index="0" name="from" type="String" /> <argument index="1" name="slot" type="String" /> <argument index="2" name="is_output" type="bool" /> @@ -257,11 +262,6 @@ Emitted at the beginning of a connection drag. </description> </signal> - <signal name="connection_drag_ended"> - <description> - Emitted at the end of a connection drag. - </description> - </signal> <signal name="connection_from_empty"> <argument index="0" name="to" type="StringName" /> <argument index="1" name="to_slot" type="int" /> |