* Changes the text list to use the big-size font. */
| 562 | * Changes the text list to use the big-size font. |
| 563 | */ |
| 564 | void TextList::setBig() |
| 565 | { |
| 566 | _font = _big; |
| 567 | |
| 568 | delete _selector; |
| 569 | _selector = new Surface(getWidth(), _font->getHeight() + _font->getSpacing(), getX(), getY()); |
| 570 | _selector->setPalette(getPalette()); |
| 571 | _selector->setVisible(false); |
| 572 | |
| 573 | updateVisible(); |
| 574 | } |
| 575 | |
| 576 | /** |
| 577 | * Changes the text list to use the small-size font. |
no test coverage detected