We have moved to a new Sailfish OS Forum. Please start new discussions there.
1

Disable camera zoom? [answered]

asked 2016-10-20 01:20:49 +0300

dunno gravatar image

I only use the camera zoom by accident. Is there a way to disable it, to make an accidental pinch do nothing?

edit retag flag offensive reopen delete

The question has been closed for the following reason "the question is answered, an answer was accepted" by nthn
close date 2016-10-23 23:03:48.733024

2 Answers

Sort by » oldest newest most voted
4

answered 2016-10-20 02:49:51 +0300

Spam Hunter gravatar image

updated 2016-10-20 03:03:27 +0300

Yes, it is possible. You will need to edit a file in root, this means using terminal, or I can make a patch for you. If you choose the patch option, this means you will need to install Patchmanager from Openrepos.

Which would you prefer?, edit yourself or apply a patch?

Here's the file and line the requires a simple edit to get the effect you want;

/usr/share/jolla-camera/pages/capture/CaptureOverlay.qml Line 113

The original line looks like this;

    onPinchUpdated: {
    camera.digitalZoom = Math.max(1, Math.min(

The line needs to look like this;

    onPinchUpdated: {
    camera.digitalZoom = Math.min(1, Math.max(

Save the file and fire up the camera, zoom should now be disabled although the zoom bar/indicator still shows, it doesn't move.

IF you are not keen on editing the file yourself, let me know and I can make a patch.

edit flag offensive delete publish link more
2

answered 2016-10-23 19:15:51 +0300

dunno gravatar image

updated 2016-10-23 19:16:30 +0300

Thanks.

It seems that one can make not only the zoom function, but also the dialog, disappear by clearing onPinchUpdated and onPinchStarted before it. So, my file now says

onPinchStarted: {
}

onPinchUpdated: {
}
edit flag offensive delete publish link more

Question tools

Follow
1 follower

Stats

Asked: 2016-10-20 01:20:49 +0300

Seen: 503 times

Last updated: Oct 23 '16