Fix warning unused lambda binding

This commit is contained in:
Gregory A Lundberg 2017-12-04 18:54:15 -06:00
parent 07707dd627
commit ac77c3226e
No known key found for this signature in database
GPG Key ID: 149484078AE8AE9E

View File

@ -287,7 +287,7 @@ void title_screen::pre_show(window& win)
//
// Help
//
register_button(win, "help", hotkey::HOTKEY_HELP, [&win]() {
register_button(win, "help", hotkey::HOTKEY_HELP, []() {
if(gui2::new_widgets) {
gui2::dialogs::help_browser::display();
}