mirror of
https://github.com/godotengine/godot.git
synced 2025-10-23 18:03:35 +00:00
Merge pull request #61017 from derammo/derammo_58121
display of large help text in visual script
This commit is contained in:
commit
7b8c574401
2 changed files with 10 additions and 10 deletions
|
@ -1966,15 +1966,6 @@ void VisualScriptEditor::_generic_search(Vector2 pos, bool node_centered) {
|
|||
}
|
||||
|
||||
new_connect_node_select->select_from_visual_script(script, false); // do not reset text
|
||||
|
||||
// Ensure that the dialog fits inside the graph.
|
||||
Size2 bounds = graph->get_global_position() + graph->get_size() - new_connect_node_select->get_size();
|
||||
pos.x = pos.x > bounds.x ? bounds.x : pos.x;
|
||||
pos.y = pos.y > bounds.y ? bounds.y : pos.y;
|
||||
|
||||
if (pos != Vector2()) {
|
||||
new_connect_node_select->set_position(pos);
|
||||
}
|
||||
}
|
||||
|
||||
void VisualScriptEditor::input(const Ref<InputEvent> &p_event) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue