Fix initial focus on ERT, TPMS apps.

This commit is contained in:
Jared Boone 2016-01-27 10:18:44 -08:00
parent cb403160b3
commit 07b8c6c661
4 changed files with 12 additions and 0 deletions

View file

@ -149,6 +149,10 @@ ERTAppView::~ERTAppView() {
EventDispatcher::message_map().unregister_handler(Message::ID::ERTPacket);
}
void ERTAppView::focus() {
recent_entries_view.focus();
}
void ERTAppView::set_parent_rect(const Rect new_parent_rect) {
View::set_parent_rect(new_parent_rect);
recent_entries_view.set_parent_rect({ 0, 0, new_parent_rect.width(), new_parent_rect.height() });