| 603 | } |
| 604 | |
| 605 | void WorkspaceControl::notifyChangeSelectorCreator(bool _visible, const MyGUI::IntCoord& _coord) |
| 606 | { |
| 607 | if (_visible) |
| 608 | { |
| 609 | mPositionSelectorCreatorControl->setVisible(true); |
| 610 | mPositionSelectorCreatorControl->setCoord(_coord); |
| 611 | } |
| 612 | else |
| 613 | { |
| 614 | mPositionSelectorCreatorControl->setVisible(false); |
| 615 | } |
| 616 | } |
| 617 | |
| 618 | void WorkspaceControl::onChangeScale() |
| 619 | { |
nothing calls this directly
no test coverage detected