Revert "Delegate haptic feedback to activity"

This reverts commit 729cffd36b.
This commit is contained in:
M66B
2023-11-05 07:36:58 +01:00
parent 729cffd36b
commit 22baeba1d9

View File

@@ -90,7 +90,6 @@ import android.view.MenuItem;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;
import android.view.Window;
import android.view.inputmethod.EditorInfo;
import android.webkit.MimeTypeMap;
import android.widget.AdapterView;
@@ -7416,11 +7415,7 @@ public class FragmentCompose extends FragmentBase {
} else if (action == R.id.action_send) {
state = State.NONE;
FragmentActivity activity = getActivity();
Window window = (activity == null ? null : activity.getWindow());
View decor = (window == null ? null : window.getDecorView());
if (decor != null)
decor.performHapticFeedback(HapticFeedbackConstants.CONFIRM);
view.performHapticFeedback(HapticFeedbackConstants.CONFIRM);
finish();
}
}