Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7e821cc7 authored by Mark Harman's avatar Mark Harman
Browse files

Remove duplicate entry of 0.1s for manual exposure time.

parent 8577815a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -67,6 +67,7 @@ FIXED Sometimes didn't layout UI correctly for landscape vs reversed landscape
FIXED   Shifted positions of icons (when "along top") to avoid camera privacy indicator on some devices
        e.g. Samsung Galaxy.
FIXED   Icons weren't smoothly rotating the first time the device was rotated (for Camera2 API).
FIXED   Duplicate entry of 0.1s for manual exposure time.
ADDED   New Settings/Photo settings/"Save preview shots". Enables saving a short video alongside
        photos, containing shots from the moment before the photo was taken (requires Android 8+ and
        Camera2 API).
+2 −2
Original line number Diff line number Diff line
@@ -196,8 +196,8 @@ public class ManualSeekbars {
                seekbar_values.add(exposure);
        }

        // 1/50 to 1/10 (steps of 5)
        for(int i=50;i>=10;i-=5) {
        // 1/50 to 1/15 (steps of 5)
        for(int i=50;i>=15;i-=5) {
            long exposure = 1000000000L/i;
            if( exposure > min_exposure_time && exposure < max_exposure_time )
                seekbar_values.add(exposure);