Skip to content

Commit

Permalink
fix: tweak size of penLift/Drop is 0.01
Browse files Browse the repository at this point in the history
  • Loading branch information
nornagon committed Mar 9, 2019
1 parent b4499be commit 6e1e1dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ function PlanOptions({state}: {state: State}) {
<input
type="number"
value={state.planOptions.penLiftDuration}
step="0.1"
step="0.01"
min="0"
onChange={e => dispatch({type: 'SET_PLAN_OPTION', value: {penLiftDuration: Number(e.target.value)}})}
/>
Expand All @@ -597,7 +597,7 @@ function PlanOptions({state}: {state: State}) {
<input
type="number"
value={state.planOptions.penDropDuration}
step="0.1"
step="0.01"
min="0"
onChange={e => dispatch({type: 'SET_PLAN_OPTION', value: {penDropDuration: Number(e.target.value)}})}
/>
Expand Down

0 comments on commit 6e1e1dc

Please sign in to comment.