* Changes the color of the arrow buttons in the list. * @param color Color value. */
| 648 | * @param color Color value. |
| 649 | */ |
| 650 | void TextList::setArrowColor(Uint8 color) |
| 651 | { |
| 652 | _up->setColor(color); |
| 653 | _down->setColor(color); |
| 654 | _scrollbar->setColor(color); |
| 655 | } |
| 656 | |
| 657 | /** |
| 658 | * Sets the position of the column of arrow buttons |
no test coverage detected