Skip to content

Commit

Permalink
fix(app): Prevent keypresses from changing jog jump size (#2315)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kadee80 authored Sep 19, 2018
1 parent aefad0a commit 1b32d6d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions app/src/components/JogControls/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export default class JogControls extends React.Component<Props, State> {

handleStepSelect = (event: SyntheticInputEvent<*>) => {
this.setState({step: Number(event.target.value)})
event.target.blur()
}

getJogHandlers () {
Expand Down

0 comments on commit 1b32d6d

Please sign in to comment.