mirror of https://github.com/godotengine/godot
Fix clicking in gradient editor
- When double-clicking on the gradient we should open the colour picker and create a colour key. - Instead, we were also evaluating the click further down producing the colour key to move around.
This commit is contained in:
parent
b05e1e7d69
commit
aebf3d9401
|
|
@ -203,6 +203,7 @@ void GradientEditor::gui_input(const Ref<InputEvent> &p_event) {
|
||||||
grabbed = _get_point_from_pos(mb->get_position().x);
|
grabbed = _get_point_from_pos(mb->get_position().x);
|
||||||
_show_color_picker();
|
_show_color_picker();
|
||||||
accept_event();
|
accept_event();
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Delete point on right click.
|
// Delete point on right click.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue