Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
MythUI: Add InBack and OutBack easing curves
  • Loading branch information
natanojl committed Feb 4, 2012
1 parent 354fa98 commit 07285bb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mythtv/libs/libmythui/mythuianimation.cpp
Expand Up @@ -129,6 +129,8 @@ void MythUIAnimation::SetEasingCurve(const QString& curve)
else if (curve == "OutElastic") setEasingCurve(QEasingCurve::OutElastic);
else if (curve == "InOutElastic") setEasingCurve(QEasingCurve::InOutElastic);
else if (curve == "OutInElastic") setEasingCurve(QEasingCurve::OutInElastic);
else if (curve == "InBack") setEasingCurve(QEasingCurve::InBack);
else if (curve == "OutBack") setEasingCurve(QEasingCurve::OutBack);
else if (curve == "InOutBack") setEasingCurve(QEasingCurve::InOutBack);
else if (curve == "OutInBack") setEasingCurve(QEasingCurve::OutInBack);
else if (curve == "InBounce") setEasingCurve(QEasingCurve::InBounce);
Expand Down

0 comments on commit 07285bb

Please sign in to comment.