Haptic feedback after empty trash/spam

This commit is contained in:
M66B 2023-10-25 09:03:01 +02:00
parent aafe2e82b3
commit b6ff186b17
1 changed files with 6 additions and 0 deletions

View File

@ -92,6 +92,7 @@ import android.util.LongSparseArray;
import android.util.Pair;
import android.util.TypedValue;
import android.view.GestureDetector;
import android.view.HapticFeedbackConstants;
import android.view.KeyEvent;
import android.view.LayoutInflater;
import android.view.Menu;
@ -10453,6 +10454,11 @@ public class FragmentMessages extends FragmentBase
return null;
}
@Override
protected void onExecuted(Bundle args, Void data) {
view.performHapticFeedback(HapticFeedbackConstants.CONFIRM);
}
@Override
protected void onException(Bundle args, Throwable ex) {
Log.unexpectedError(getParentFragmentManager(), ex);