| 144 | } |
| 145 | |
| 146 | void ScopeTextureControl::CommandGridMoveLeft(const MyGUI::UString& _commandName, bool& _result) |
| 147 | { |
| 148 | if (!checkCommand()) |
| 149 | return; |
| 150 | |
| 151 | mCoordValue.left = GridManager::getInstance().toGrid(mCoordValue.left, GridManager::Previous); |
| 152 | updateFromCoordValue(); |
| 153 | |
| 154 | _result = true; |
| 155 | } |
| 156 | |
| 157 | void ScopeTextureControl::CommandGridMoveRight(const MyGUI::UString& _commandName, bool& _result) |
| 158 | { |