Fixed missing argument for clear_selection signal in Bezier Curve editor
Also removed unused clear_selection signal in Animation Track editor (never emitted) Fixes #32348
This commit is contained in:
@ -546,7 +546,7 @@ void AnimationBezierTrackEdit::set_timeline(AnimationTimelineEdit *p_timeline) {
|
||||
}
|
||||
void AnimationBezierTrackEdit::set_editor(AnimationTrackEditor *p_editor) {
|
||||
editor = p_editor;
|
||||
connect("clear_selection", editor, "_clear_selection");
|
||||
connect("clear_selection", editor, "_clear_selection", varray(false));
|
||||
}
|
||||
|
||||
void AnimationBezierTrackEdit::_play_position_draw() {
|
||||
|
||||
Reference in New Issue
Block a user