| 27 | } |
| 28 | |
| 29 | void SkinItem::_setSkinItemColour(const Colour& _value) |
| 30 | { |
| 31 | for (auto& skin : mSubSkinChild) |
| 32 | { |
| 33 | ISubWidgetRect* rect = skin->castType<ISubWidgetRect>(false); |
| 34 | if (rect) |
| 35 | rect->_setColour(_value); |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | void SkinItem::_setSkinItemAlpha(float _value) |
| 40 | { |
nothing calls this directly
no test coverage detected