Skip to content

Commit

Permalink
Revert "Merge pull request #96548 from timothyqiu/item-list-signals"
Browse files Browse the repository at this point in the history
This reverts commit 61fce32, reversing
changes made to 83b2ca3.
  • Loading branch information
The Rizzler committed Oct 1, 2024
1 parent 1835c4a commit 0ce797d
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions doc/classes/ItemList.xml
Original file line number Diff line number Diff line change
Expand Up @@ -407,37 +407,36 @@
<param index="0" name="at_position" type="Vector2" />
<param index="1" name="mouse_button_index" type="int" />
<description>
Emitted when any mouse click is issued within the rect of the list but on empty space.
[param at_position] is the click position in this control's local coordinate system.
Triggered when any mouse click is issued within the rect of the list but on empty space.
</description>
</signal>
<signal name="item_activated">
<param index="0" name="index" type="int" />
<description>
Emitted when specified list item is activated via double-clicking or by pressing [kbd]Enter[/kbd].
Triggered when specified list item is activated via double-clicking or by pressing [kbd]Enter[/kbd].
</description>
</signal>
<signal name="item_clicked">
<param index="0" name="index" type="int" />
<param index="1" name="at_position" type="Vector2" />
<param index="2" name="mouse_button_index" type="int" />
<description>
Emitted when specified list item has been clicked with any mouse button.
[param at_position] is the click position in this control's local coordinate system.
Triggered when specified list item has been clicked with any mouse button.
The click position is also provided to allow appropriate popup of context menus at the correct location.
</description>
</signal>
<signal name="item_selected">
<param index="0" name="index" type="int" />
<description>
Emitted when specified item has been selected. Only applicable in single selection mode.
Triggered when specified item has been selected.
[member allow_reselect] must be enabled to reselect an item.
</description>
</signal>
<signal name="multi_selected">
<param index="0" name="index" type="int" />
<param index="1" name="selected" type="bool" />
<description>
Emitted when a multiple selection is altered on a list allowing multiple selection.
Triggered when a multiple selection is altered on a list allowing multiple selection.
</description>
</signal>
</signals>
Expand Down

0 comments on commit 0ce797d

Please sign in to comment.