mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-23 03:05:26 +00:00
Fix crash in reactions overlay OnTouch.
This commit is contained in:
committed by
Greyson Parrelli
parent
2754b397d5
commit
73dedd79d2
@@ -539,7 +539,7 @@ public final class ConversationReactionOverlay extends RelativeLayout {
|
||||
}
|
||||
|
||||
private void update(float min, float max) {
|
||||
Preconditions.checkArgument(min < max, "Min must be less than max");
|
||||
Preconditions.checkArgument(min <= max, "Min must be less than max");
|
||||
this.min = min;
|
||||
this.max = max;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user