diff options
| author | Zaven Muradyan | 2017-12-12 21:40:12 -0800 |
|---|---|---|
| committer | Zaven Muradyan | 2017-12-12 21:40:12 -0800 |
| commit | f139d0e4e65effc658a06c7957d34e93d4eb8b69 (patch) | |
| tree | 46492b902d5d93b82d2151bd234b6387f8d7738c /editor/plugins/script_editor_plugin.cpp | |
| parent | fb12d700c9f4f47c775fa1bebeeb40ff683b2ef2 (diff) | |
| download | godot-f139d0e4e65effc658a06c7957d34e93d4eb8b69.tar.gz godot-f139d0e4e65effc658a06c7957d34e93d4eb8b69.tar.zst godot-f139d0e4e65effc658a06c7957d34e93d4eb8b69.zip | |
Diffstat (limited to 'editor/plugins/script_editor_plugin.cpp')
| -rw-r--r-- | editor/plugins/script_editor_plugin.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp index c02b3458e..b75d38244 100644 --- a/editor/plugins/script_editor_plugin.cpp +++ b/editor/plugins/script_editor_plugin.cpp @@ -1329,12 +1329,12 @@ void ScriptEditor::_members_overview_selected(int p_idx) { if (!se) { return; } - Dictionary state; - state["scroll_position"] = members_overview->get_item_metadata(p_idx); + // Go to the member's line and reset the cursor column. We can't just change scroll_position + // directly, 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["row"] = members_overview->get_item_metadata(p_idx); se->set_edit_state(state); - se->ensure_focus(); } void ScriptEditor::_help_overview_selected(int p_idx) { |
