diff options
author | derammo <817160+derammo@users.noreply.github.com> | 2022-08-13 12:30:41 -0400 |
---|---|---|
committer | derammo <817160+derammo@users.noreply.github.com> | 2022-08-24 08:10:40 -0400 |
commit | 0ba2e999dfb12e0047bde19865dcb2deacfa3a30 (patch) | |
tree | bd89bc5b750e4b6f99cb0a84bfa1a78a99e36173 /doc/classes/Tree.xml | |
parent | ba0421f3d907b1a3fc94e05f6c20b158e9aa7021 (diff) | |
download | redot-engine-0ba2e999dfb12e0047bde19865dcb2deacfa3a30.tar.gz |
implemented right click on Tree control header
Diffstat (limited to 'doc/classes/Tree.xml')
-rw-r--r-- | doc/classes/Tree.xml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/classes/Tree.xml b/doc/classes/Tree.xml index efa0e4e393..bf66d9f12a 100644 --- a/doc/classes/Tree.xml +++ b/doc/classes/Tree.xml @@ -351,10 +351,11 @@ Emitted when [method TreeItem.propagate_check] is called. Connect to this signal to process the items that are affected when [method TreeItem.propagate_check] is invoked. The order that the items affected will be processed is as follows: the item that invoked the method, children of that item, and finally parents of that item. </description> </signal> - <signal name="column_title_pressed"> + <signal name="column_title_clicked"> <param index="0" name="column" type="int" /> + <param index="1" name="mouse_button_index" type="int" /> <description> - Emitted when a column's title is pressed. + Emitted when a column's title is clicked with either [constant MOUSE_BUTTON_LEFT] or [constant MOUSE_BUTTON_RIGHT]. </description> </signal> <signal name="custom_item_clicked"> |