Bugfix: Respect QskControl::Disabled aspect. (#162)

This commit is contained in:
Clemens Manert 2022-02-20 10:54:01 +01:00 committed by GitHub
parent 9cc840f0f8
commit adc4875629
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ QSGNode* QskPageIndicatorSkinlet::updateSampleNode( const QskSkinnable* skinnabl
const auto ratio = indicator->valueRatioAt( index ); const auto ratio = indicator->valueRatioAt( index );
return QskSkinlet::updateInterpolatedBoxNode( skinnable, node, return QskSkinlet::updateInterpolatedBoxNode( skinnable, node,
rect, Q::Bullet, Q::Bullet | Q::Selected, ratio ); rect, Q::Bullet, Q::Bullet | Q::Selected | indicator->skinStates(), ratio );
} }
return nullptr; return nullptr;