| 632 | } |
| 633 | |
| 634 | void GuiGameListMenuCtrl::updateHeight() |
| 635 | { |
| 636 | if (hasValidProfile()) |
| 637 | { |
| 638 | S32 minHeight = getMinExtent().y; |
| 639 | if (getHeight() < minHeight) |
| 640 | { |
| 641 | setHeight(minHeight); |
| 642 | } |
| 643 | } |
| 644 | } |
| 645 | |
| 646 | void GuiGameListMenuCtrl::onMouseDown(const GuiEvent &event) |
| 647 | { |
nothing calls this directly
no test coverage detected