We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 354fa98 commit 07285bbCopy full SHA for 07285bb
mythtv/libs/libmythui/mythuianimation.cpp
@@ -129,6 +129,8 @@ void MythUIAnimation::SetEasingCurve(const QString& curve)
129
else if (curve == "OutElastic") setEasingCurve(QEasingCurve::OutElastic);
130
else if (curve == "InOutElastic") setEasingCurve(QEasingCurve::InOutElastic);
131
else if (curve == "OutInElastic") setEasingCurve(QEasingCurve::OutInElastic);
132
+ else if (curve == "InBack") setEasingCurve(QEasingCurve::InBack);
133
+ else if (curve == "OutBack") setEasingCurve(QEasingCurve::OutBack);
134
else if (curve == "InOutBack") setEasingCurve(QEasingCurve::InOutBack);
135
else if (curve == "OutInBack") setEasingCurve(QEasingCurve::OutInBack);
136
else if (curve == "InBounce") setEasingCurve(QEasingCurve::InBounce);
0 commit comments