File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -509,7 +509,7 @@ void OrchestratorGraphEdit::_gui_input(const Ref<InputEvent>& p_event)
509
509
_hovered_connection = get_closest_connection_at_point (mm->get_position ());
510
510
if (!_hovered_connection.is_empty ())
511
511
{
512
- _show_drag_hint (" Use Ctrl +LMB to add a knot to the connection.\n "
512
+ _show_drag_hint (" Use Shift +LMB to add a knot to the connection.\n "
513
513
" Hover over an existing knot and pressing Ctrl+LMB will remove it." );
514
514
}
515
515
}
@@ -519,9 +519,9 @@ void OrchestratorGraphEdit::_gui_input(const Ref<InputEvent>& p_event)
519
519
{
520
520
if (mb->get_button_index () == MOUSE_BUTTON_LEFT && mb->is_pressed ())
521
521
{
522
- if (mb->get_modifiers_mask ().has_flag (KEY_MASK_CTRL ))
522
+ if (mb->get_modifiers_mask ().has_flag (KEY_MASK_SHIFT ))
523
523
{
524
- // CTRL +LMB adds a knot to the connection that can then be moved.
524
+ // SHIFT +LMB adds a knot to the connection that can then be moved.
525
525
if (!_hovered_connection.is_empty ())
526
526
_create_connection_knot (_hovered_connection, mb->get_position ());
527
527
}
You can’t perform that action at this time.
0 commit comments