I have run into a strange problem while using RatingIndicator for Harmattan.
RatingIndicator Reference
I am developping a full QML application with
and when I use:Code:theme.inverted = true
The stars are correctly displayed (1/5).Code:RatingIndicator { id: myRatingItem ratingValue: 1 maximumValue: 5 inverted = false }
However, when I use:
orCode:RatingIndicator { id: myRatingItem ratingValue: 1 maximumValue: 5 inverted = true }
(which is the same due to the inverted theme), the stars are not correctly displayed (they are all filled as if the ratingValue would be 5/5)Code:RatingIndicator { id: myRatingItem ratingValue: 1 maximumValue: 5 }
This behaviour is seen on:
- Nokia N9 target
- Simulator with com.nokia.extras platform = Harmattan
The behaviour is correct in simulator with com.nokia.extras platform = Symbian
Obviously as I am developping a harmattan app with inverted theme, this is a big issue for me. Setting inverted = false on the component is not a solution as it is barely visible on a dark background.
My only explication is that there is a bug in the component on harmattan but maybe I miss something... Any ideas?
Thanks,

Reply With Quote

