only check if types do match without doing the conversion

This commit is contained in:
Uwe Rathmann 2022-04-03 16:25:46 +02:00
parent 23482cf1d0
commit 81cf9a20ee

View File

@ -1145,12 +1145,12 @@ void QskSkinnable::startHintTransition( QskAspect aspect,
if ( control->window() == nullptr || !isTransitionAccepted( aspect ) )
return;
if ( !QskVariantAnimator::maybeInterpolate( from, to ) )
return;
auto v1 = from;
auto v2 = to;
if ( !QskVariantAnimator::convertValues( v1, v2 ) )
return;
if ( aspect.flagPrimitive() == QskAspect::GraphicRole )
{
const auto skin = effectiveSkin();