Reset translation with zoom out
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
7068996b60
commit
2ff34000fd
1 changed files with 5 additions and 1 deletions
|
@ -222,7 +222,11 @@ export default class ImageView extends React.Component {
|
||||||
if (this.state.zoom === MIN_ZOOM) {
|
if (this.state.zoom === MIN_ZOOM) {
|
||||||
this.setState({zoom: MAX_ZOOM});
|
this.setState({zoom: MAX_ZOOM});
|
||||||
} else {
|
} else {
|
||||||
this.setState({zoom: MIN_ZOOM});
|
this.setState({
|
||||||
|
zoom: MIN_ZOOM,
|
||||||
|
translationX: 0,
|
||||||
|
translationY: 0,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.setState({moving: false});
|
this.setState({moving: false});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue