diff options
author | kobewi <kobewi4e@gmail.com> | 2022-03-12 01:06:45 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2022-03-12 01:14:03 +0100 |
commit | 42078dec9f592243209f845766409d01c12ac525 (patch) | |
tree | d73198d40081021ae8ab945d58b4482378869c7b /editor/plugins/text_editor.cpp | |
parent | d5076439e44e6eab5732e1d2fc0f30bb6f34e5f9 (diff) | |
download | redot-engine-42078dec9f592243209f845766409d01c12ac525.tar.gz |
Allow negative indexes in ItemList and PopupMenu
Diffstat (limited to 'editor/plugins/text_editor.cpp')
-rw-r--r-- | editor/plugins/text_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/text_editor.cpp b/editor/plugins/text_editor.cpp index 940f269803..34f3ec73c0 100644 --- a/editor/plugins/text_editor.cpp +++ b/editor/plugins/text_editor.cpp @@ -179,7 +179,7 @@ void TextEditor::_update_bookmark_list() { } bookmarks_menu->add_item(String::num((int)bookmark_list[i] + 1) + " - \"" + line + "\""); - bookmarks_menu->set_item_metadata(bookmarks_menu->get_item_count() - 1, bookmark_list[i]); + bookmarks_menu->set_item_metadata(-1, bookmark_list[i]); } } |