Change cursor to default

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-04-26 15:01:06 +02:00 committed by J. Ryan Stinnett
parent 3716ec4a25
commit 2f147c2e98
1 changed files with 1 additions and 1 deletions

View File

@ -321,7 +321,7 @@ export default class ImageView extends React.Component<IProps, IState> {
if (this.state.moving) {
cursor= "grabbing";
} else if (this.state.maxZoom === this.state.minZoom) {
cursor = "pointer";
cursor = "default";
} else if (this.state.zoom === this.state.minZoom) {
cursor = "zoom-in";
} else {