summaryrefslogtreecommitdiffstats
path: root/editor/plugins/text_editor.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2022-03-12 01:06:45 +0100
committerkobewi <kobewi4e@gmail.com>2022-03-12 01:14:03 +0100
commit42078dec9f592243209f845766409d01c12ac525 (patch)
treed73198d40081021ae8ab945d58b4482378869c7b /editor/plugins/text_editor.cpp
parentd5076439e44e6eab5732e1d2fc0f30bb6f34e5f9 (diff)
downloadredot-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.cpp2
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]);
}
}