summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaulb23 <p_batty@hotmail.co.uk>2018-02-09 17:35:28 +0000
committerPaulb23 <p_batty@hotmail.co.uk>2018-02-09 17:35:28 +0000
commit4d92c5e1c306b483d30004fe04fbef1ad46f7f7f (patch)
treebf3bb7b554eb9b6b340b5e6ad3ecc3ff96a0cda8
parent4a042b1f7a4d6d9d41ab46c5e0f069d848b408f5 (diff)
Fixed members overview not scrolling to correct line
-rw-r--r--editor/plugins/script_editor_plugin.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp
index d18422c0c0..c58043667d 100644
--- a/editor/plugins/script_editor_plugin.cpp
+++ b/editor/plugins/script_editor_plugin.cpp
@@ -1328,11 +1328,12 @@ void ScriptEditor::_members_overview_selected(int p_idx) {
if (!se) {
return;
}
- // Go to the member's line and reset the cursor column. We can't just change scroll_position
- // directly, since code might be folded.
+ // Go to the member's line and reset the cursor column. We can't change scroll_position
+ // directly until we have gone to the line first, since code might be folded.
se->goto_line(members_overview->get_item_metadata(p_idx));
Dictionary state = se->get_edit_state();
state["column"] = 0;
+ state["scroll_position"] = members_overview->get_item_metadata(p_idx);
se->set_edit_state(state);
}