mirror of
https://github.com/oxen-io/session-android.git
synced 2025-12-02 02:32:37 +00:00
clear drafts immediately upon sending or new intent
fixes #3843 closes #3850 Closes #4571 // FREEBIE
This commit is contained in:
committed by
Moxie Marlinspike
parent
25da3525fa
commit
bcd08956bd
@@ -129,8 +129,8 @@ public class ViewUtil {
|
||||
animateIn(view, getAlphaAnimation(0f, 1f, duration));
|
||||
}
|
||||
|
||||
public static void fadeOut(final @NonNull View view, final int duration) {
|
||||
animateOut(view, getAlphaAnimation(1f, 0f, duration));
|
||||
public static ListenableFuture<Boolean> fadeOut(final @NonNull View view, final int duration) {
|
||||
return animateOut(view, getAlphaAnimation(1f, 0f, duration));
|
||||
}
|
||||
|
||||
public static ListenableFuture<Boolean> animateOut(final @NonNull View view, final @NonNull Animation animation) {
|
||||
|
||||
Reference in New Issue
Block a user