| 136 | } |
| 137 | |
| 138 | void GroupTextureController::updateCoords(std::string_view _value) |
| 139 | { |
| 140 | MyGUI::IntCoord coord; |
| 141 | if (MyGUI::utility::parseComplex(_value, coord.left, coord.top, coord.width, coord.height)) |
| 142 | { |
| 143 | mControl->setCoordValue(coord, ScopeTextureControl::SelectorCoord); |
| 144 | } |
| 145 | else |
| 146 | { |
| 147 | mControl->clearCoordValue(); |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | } |
nothing calls this directly
no test coverage detected