Added optional id parameter to PopupMenu::add_separator
(cherry picked from commit ca8c794d04
)
This commit is contained in:
parent
e2ff3ab88f
commit
adfc646f8c
@ -203,8 +203,10 @@
|
||||
</return>
|
||||
<argument index="0" name="label" type="String" default="""">
|
||||
</argument>
|
||||
<argument index="1" name="id" type="int" default="-1">
|
||||
</argument>
|
||||
<description>
|
||||
Adds a separator between items. Separators also occupy an index.
|
||||
Adds a separator between items. Separators also occupy an index, which you can set by using the [code]id[/code] parameter.
|
||||
A [code]label[/code] can optionally be provided, which will appear at the center of the separator.
|
||||
</description>
|
||||
</method>
|
||||
|
@ -1216,11 +1216,11 @@ void PopupMenu::remove_item(int p_idx) {
|
||||
minimum_size_changed();
|
||||
}
|
||||
|
||||
void PopupMenu::add_separator(const String &p_text) {
|
||||
void PopupMenu::add_separator(const String &p_text, int p_id) {
|
||||
|
||||
Item sep;
|
||||
sep.separator = true;
|
||||
sep.id = -1;
|
||||
sep.id = p_id;
|
||||
if (p_text != String()) {
|
||||
sep.text = p_text;
|
||||
sep.xl_text = tr(p_text);
|
||||
@ -1484,7 +1484,7 @@ void PopupMenu::_bind_methods() {
|
||||
|
||||
ClassDB::bind_method(D_METHOD("remove_item", "idx"), &PopupMenu::remove_item);
|
||||
|
||||
ClassDB::bind_method(D_METHOD("add_separator", "label"), &PopupMenu::add_separator, DEFVAL(String()));
|
||||
ClassDB::bind_method(D_METHOD("add_separator", "label", "id"), &PopupMenu::add_separator, DEFVAL(String()), DEFVAL(-1));
|
||||
ClassDB::bind_method(D_METHOD("clear"), &PopupMenu::clear);
|
||||
|
||||
ClassDB::bind_method(D_METHOD("_set_items"), &PopupMenu::_set_items);
|
||||
|
@ -184,7 +184,7 @@ public:
|
||||
|
||||
void remove_item(int p_idx);
|
||||
|
||||
void add_separator(const String &p_text = String());
|
||||
void add_separator(const String &p_text = String(), int p_id = -1);
|
||||
|
||||
void clear();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user