Fix crash in reactions overlay OnTouch.
This commit is contained in:
parent
2754b397d5
commit
73dedd79d2
1 changed files with 1 additions and 1 deletions
|
@ -539,7 +539,7 @@ public final class ConversationReactionOverlay extends RelativeLayout {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void update(float min, float max) {
|
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.min = min;
|
||||||
this.max = max;
|
this.max = max;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue