* Changes the text list to use the small-size font. */
| 577 | * Changes the text list to use the small-size font. |
| 578 | */ |
| 579 | void TextList::setSmall() |
| 580 | { |
| 581 | _font = _small; |
| 582 | |
| 583 | delete _selector; |
| 584 | _selector = new Surface(getWidth(), _font->getHeight() + _font->getSpacing(), getX(), getY()); |
| 585 | _selector->setPalette(getPalette()); |
| 586 | _selector->setVisible(false); |
| 587 | |
| 588 | updateVisible(); |
| 589 | } |
| 590 | |
| 591 | /** |
| 592 | * If enabled, the columns will match the text width. |
no test coverage detected