Export ZOOM_STEP into a variable

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-03-15 19:24:00 +01:00
parent 9c313854d0
commit 67a57ead96
No known key found for this signature in database
GPG key ID: 9760693FDD98A790

View file

@ -33,6 +33,7 @@ import {replaceableComponent} from "../../../utils/replaceableComponent";
const MIN_ZOOM = 100;
const MAX_ZOOM = 300;
const ZOOM_STEP = 10;
@replaceableComponent("views.elements.ImageView")
export default class ImageView extends React.Component {
@ -131,7 +132,7 @@ export default class ImageView extends React.Component {
}
this.setState({
zoom: this.state.zoom + 10,
zoom: this.state.zoom + ZOOM_STEP,
});
};
@ -145,7 +146,7 @@ export default class ImageView extends React.Component {
return;
}
this.setState({
zoom: this.state.zoom - 10,
zoom: this.state.zoom - ZOOM_STEP,
});
}