* Starts increasing the item. * @param action Pointer to an action. */
| 379 | * @param action Pointer to an action. |
| 380 | */ |
| 381 | void TransferItemsState::lstItemsLeftArrowPress(Action *action) |
| 382 | { |
| 383 | _sel = _lstItems->getSelectedRow(); |
| 384 | if (action->getDetails()->button.button == SDL_BUTTON_LEFT && !_timerInc->isRunning()) _timerInc->start(); |
| 385 | } |
| 386 | |
| 387 | /** |
| 388 | * Stops increasing the item. |
nothing calls this directly
no test coverage detected