Skip to content

Commit

Permalink
Update keyframe zoom range when value is changed
Browse files Browse the repository at this point in the history
  • Loading branch information
bmatherly committed May 16, 2021
1 parent 526f579 commit 4b2eed1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/keyframesmodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ void KeyframesModel::onFilterChanged(const QString& property)
}
beginInsertRows(index(i), 0, m_keyframeCounts[i] - 1);
endInsertRows();
emit dataChanged(index(i), index(i), QVector<int>() << MinimumValueRole << MaximumValueRole);
emit dataChanged(index(i), index(i), QVector<int>() << MinimumValueRole << MaximumValueRole << LowestValueRole << HighestValueRole);
} else {
// All keyframes removed. Reset model to remove this parameter.
reload();
Expand Down

0 comments on commit 4b2eed1

Please sign in to comment.