| 164 | } |
| 165 | |
| 166 | void PageViewIndicator::setIndexNodesColor(const Color3B& indexNodesColor) |
| 167 | { |
| 168 | _indexNodesColor = indexNodesColor; |
| 169 | |
| 170 | for (auto&& indexNode : _indexNodes) |
| 171 | { |
| 172 | indexNode->setColor(indexNodesColor); |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | void PageViewIndicator::setIndexNodesOpacity(uint8_t opacity) |
| 177 | { |
no test coverage detected