| 528 | } |
| 529 | |
| 530 | void SectionWidget::showFinished() { |
| 531 | _showAnimation.reset(); |
| 532 | if (isHidden()) return; |
| 533 | |
| 534 | showChildren(); |
| 535 | showFinishedHook(); |
| 536 | |
| 537 | if (isAncestorOf(window()->focusWidget())) { |
| 538 | setInnerFocus(); |
| 539 | } else { |
| 540 | controller()->widget()->setInnerFocus(); |
| 541 | } |
| 542 | } |
| 543 | |
| 544 | rpl::producer<int> SectionWidget::desiredHeight() const { |
| 545 | return rpl::single(height()); |
nothing calls this directly
no test coverage detected