Revert "Delay finish for haptic feedback"

This reverts commit f1a16193e0.
This commit is contained in:
M66B 2023-11-05 12:41:44 +01:00
parent d36a4c1ddc
commit 47b3ecd36a
1 changed files with 1 additions and 6 deletions

View File

@ -7416,12 +7416,7 @@ public class FragmentCompose extends FragmentBase {
} else if (action == R.id.action_send) {
state = State.NONE;
view.performHapticFeedback(HapticFeedbackConstants.CONFIRM);
view.postDelayed(new Runnable() {
@Override
public void run() {
finish();
}
}, 20);
finish();
}
}