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

Commit aa00f2d9 authored by Felipe Leme's avatar Felipe Leme
Browse files

Vibrate after a screenshot is taken, not before.

BUG: 27389320
Change-Id: I383b4252a80ae2f1d820a97b9deb930dccf50313
parent 7ba6dc0f
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1180,14 +1180,13 @@ public class BugreportProgressService extends Service {
     * Takes a screenshot and save it to the given location.
     */
    private static boolean takeScreenshot(Context context, String screenshotFile) {
        ((Vibrator) context.getSystemService(Context.VIBRATOR_SERVICE))
                .vibrate(150);
        final ProcessBuilder screencap = new ProcessBuilder()
                .command("/system/bin/screencap", "-p", screenshotFile);
        Log.d(TAG, "Taking screenshot using " + screencap.command());
        try {
            final int exitValue = screencap.start().waitFor();
            if (exitValue == 0) {
                ((Vibrator) context.getSystemService(Context.VIBRATOR_SERVICE)).vibrate(150);
                return true;
            }
            Log.e(TAG, "screencap (" + screencap.command() + ") failed: " + exitValue);