Skip to content

Commit

Permalink
add camera sensitivity config to onboarding
Browse files Browse the repository at this point in the history
  • Loading branch information
n8fr8 committed Jan 17, 2018
1 parent 985f14e commit 2373f2a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/org/havenapp/main/ui/PPAppIntro.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ protected void onCreate(Bundle savedInstanceState) {
cs2.showButton(getString(R.string.action_configure), new View.OnClickListener() {
@Override
public void onClick(View v) {
startActivity(new Intent(PPAppIntro.this,MicrophoneConfigureActivity.class));
startActivity(new Intent(PPAppIntro.this,AccelConfigureActivity.class));
startActivity(new Intent(PPAppIntro.this,MicrophoneConfigureActivity.class));
startActivity(new Intent(PPAppIntro.this,CameraConfigureActivity.class));

}
});
Expand Down

0 comments on commit 2373f2a

Please sign in to comment.