Skip to content

Commit

Permalink
Fix merging issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bqrichards committed Apr 12, 2019
1 parent 5a72852 commit 124a426
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup c
// Start
Match.GUI.bindCheckbox(view, R.id.sandstorm_sandstorm_active, Match.SANDSTORM_ACTIVE);
Match.GUI.bindCheckbox(view, R.id.sandstorm_leaves_hab_checkBox, Match.LEAVES_HAB);
Match.GUI.bindSpinner(getContext(), view, R.id.sandstorm_hab_level_spinner, Match.START_LEVEL, new String[]{"--------", "Low", "Middle"});
Match.GUI.bindSpinner(getContext(), view, R.id.sandstorm_hab_level_spinner, Match.START_LEVEL, new String[]{"--------", "Low", "Mid", "High"});
Match.GUI.bindSpinner(getContext(), view, R.id.sandstorm_start_position_spinner, Match.START_POSITION, new String[]{"--------", "Left", "Middle", "Right"});
Match.GUI.bindSpinner(getContext(), view, R.id.sandstorm_start_object_spinner, Match.START_OBJECT, new String[]{"--------", "N/A", "Hatch", "Cargo"});
Match.GUI.bindCheckbox(view, R.id.sandstorm_crosses_midline_checkBox, Match.CROSS_OVER);
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/frc63175985/csp/TeleOpFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup c
String[] outcomeOptions = {"--------", "Self Only", "Self Plus Others", "Others Only", "Assisted"};
Match.GUI.bindSpinner(getContext(), view, R.id.teleop_climb_outcome_spinner, Match.CLIMB_OUTCOME, outcomeOptions);
Match.GUI.bindSpinner(getContext(), view, R.id.teleop_climb_height_spinner, Match.CLIMB_LEVEL, PitScoutRecord.HEIGHT_OPTIONS);
Match.GUI.bindStepper(view, R.id.teleop_climb_assists_stepper, Match.NUMBER_CLIMB_ASSISTS);
Match.GUI.bindStepper(view, R.id.teleop_climb_assists_stepper, Match.NUMBER_CLIMB_ASSISTS, -1, null);
Match.GUI.bindCheckbox(view, R.id.teleop_robot_fell_checkBox, Match.CLIMB_FALL);

return view;
Expand Down

0 comments on commit 124a426

Please sign in to comment.