diff --git a/src/components/views/elements/ImageView.js b/src/components/views/elements/ImageView.js index 33a4b3a748..89f6780cf9 100644 --- a/src/components/views/elements/ImageView.js +++ b/src/components/views/elements/ImageView.js @@ -222,7 +222,11 @@ export default class ImageView extends React.Component { if (this.state.zoom === MIN_ZOOM) { this.setState({zoom: MAX_ZOOM}); } else { - this.setState({zoom: MIN_ZOOM}); + this.setState({ + zoom: MIN_ZOOM, + translationX: 0, + translationY: 0, + }); } } this.setState({moving: false});