summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Evans <tevans1863@gmail.com>2020-04-26 12:23:00 -0500
committerTom Evans <tevans1863@gmail.com>2020-04-26 12:23:00 -0500
commitfe53c1b0bd14afbc7c33297ca4176d6de1110686 (patch)
tree80f59b24466cee399443fdeb28ac4956c8b0288a
parent23b7670d32c566acd62870c73676531eb187aa94 (diff)
Fixed shuffling editor help tabs
The indexes for the ScriptEditorItemData entries were not getting updated after sorting. This would cause a page to be open but with a different tab selected. Whenever _update_script_names was called next, it would correct this indexing. Now we correct it immediately following the tab sort.
-rw-r--r--editor/plugins/script_editor_plugin.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp
index 2c831979de..b5559e7f52 100644
--- a/editor/plugins/script_editor_plugin.cpp
+++ b/editor/plugins/script_editor_plugin.cpp
@@ -1866,6 +1866,10 @@ void ScriptEditor::_update_script_names() {
if (new_cur_tab == -1 && sedata[i].index == cur_tab) {
new_cur_tab = i;
}
+ // Update index of sd entries for sorted order
+ _ScriptEditorItemData sd = sedata[i];
+ sd.index = i;
+ sedata.set(i, sd);
}
tab_container->set_current_tab(new_prev_tab);
tab_container->set_current_tab(new_cur_tab);