Bugfix: Respect QskControl::Disabled aspect.

This commit is contained in:
Clemens Manert 2022-02-15 23:11:25 +01:00
parent 9cc840f0f8
commit 97f9d361f3
No known key found for this signature in database
GPG Key ID: 9197EAE8F85E3A18
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;