You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-12 13:20:55 +00:00
Fixed members overview not scrolling to correct line
This commit is contained in:
@@ -1328,11 +1328,12 @@ void ScriptEditor::_members_overview_selected(int p_idx) {
|
|||||||
if (!se) {
|
if (!se) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// Go to the member's line and reset the cursor column. We can't just change scroll_position
|
// Go to the member's line and reset the cursor column. We can't change scroll_position
|
||||||
// directly, since code might be folded.
|
// directly until we have gone to the line first, since code might be folded.
|
||||||
se->goto_line(members_overview->get_item_metadata(p_idx));
|
se->goto_line(members_overview->get_item_metadata(p_idx));
|
||||||
Dictionary state = se->get_edit_state();
|
Dictionary state = se->get_edit_state();
|
||||||
state["column"] = 0;
|
state["column"] = 0;
|
||||||
|
state["scroll_position"] = members_overview->get_item_metadata(p_idx);
|
||||||
se->set_edit_state(state);
|
se->set_edit_state(state);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user