From 6697513d30c6ed31fa865883d23870973c7a72da Mon Sep 17 00:00:00 2001 From: Shannon Booth Date: Sat, 18 Jan 2020 12:10:00 +1300 Subject: [PATCH] Help: Set tree view as focused widget This allows you to use the start using the keys to navigate the menu immediately, instead of having to click on the tree view first. --- Applications/Help/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Applications/Help/main.cpp b/Applications/Help/main.cpp index ca06805295..b0174bcbba 100644 --- a/Applications/Help/main.cpp +++ b/Applications/Help/main.cpp @@ -158,6 +158,7 @@ int main(int argc, char* argv[]) app.set_menubar(move(menubar)); window->set_main_widget(widget); + window->set_focused_widget(tree_view); window->show(); window->set_icon(load_png("/res/icons/16x16/book.png"));