Fix bad compose box state if you leave while recording a voice note.

This commit is contained in:
Greyson Parrelli
2022-11-02 14:29:58 -04:00
committed by Cody Henthorne
parent 377841db26
commit c674d5b674

View File

@@ -475,7 +475,9 @@ public class InputPanel extends LinearLayout
future.addListener(new AssertedSuccessListener<Void>() {
@Override
public void onSuccess(Void result) {
fadeInNormalComposeViews();
if (voiceNoteDraftView.getDraft() == null) {
fadeInNormalComposeViews();
}
}
});