renamed function for clarity

This commit is contained in:
itsmattkc
2021-01-24 15:31:01 +11:00
parent f04ca0a707
commit 8d975faa83
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -102,7 +102,7 @@ void CurveView::DisconnectInput(NodeInput *input, int element, int track)
connected_inputs_.removeOne(ref);
}
void CurveView::SelectKeyframesOf(NodeInput *input, int element, int track)
void CurveView::SelectKeyframesOfInput(NodeInput *input, int element, int track)
{
DeselectAll();
+1 -1
View File
@@ -42,7 +42,7 @@ public:
void DisconnectInput(NodeInput* input, int element, int track);
void SelectKeyframesOf(NodeInput* input, int element, int track);
void SelectKeyframesOfInput(NodeInput* input, int element, int track);
void ZoomToFitInput(NodeInput* input, int element, int track);
+1 -1
View File
@@ -363,7 +363,7 @@ void CurveWidget::InputSelectionChanged(NodeInput *input, int element, int track
key_control_->SetInput(input, element);
if (input) {
view_->SelectKeyframesOf(input, element, track);
view_->SelectKeyframesOfInput(input, element, track);
}
}