You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-11 20:22:36 +03:00
Export ZOOM_STEP into a variable
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
@@ -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,
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user