Skip to content

Commit

Permalink
Fix BT Remote 'stay' button on first launch bug (flipperdevices#1626)
Browse files Browse the repository at this point in the history
  • Loading branch information
drunkbatya authored Aug 19, 2022
1 parent 2a45206 commit fdb181b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion applications/bt/bt_hid_app/bt_hid.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ BtHid* bt_hid_app_alloc() {
app->view_dispatcher, BtHidViewMouse, bt_hid_mouse_get_view(app->bt_hid_mouse));

// TODO switch to menu after Media is done
view_dispatcher_switch_to_view(app->view_dispatcher, BtHidViewKeynote);
app->view_id = BtHidViewKeynote;
view_dispatcher_switch_to_view(app->view_dispatcher, app->view_id);

return app;
}
Expand Down

0 comments on commit fdb181b

Please sign in to comment.