Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2fb503f5 authored by Jozef BABJAK's avatar Jozef BABJAK
Browse files

Using robust equality check.

Change-Id: Ie30684c472bfa38d0432f855f7075c34709958d5
parent 8d25eab1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1154,7 +1154,7 @@ public abstract class Layout {
        if (h2 < 0.5f)
            h2 = 0.5f;

        if (h1 == h2) {
        if (Float.compare(h1, h2) == 0) {
            dest.moveTo(h1, top);
            dest.lineTo(h1, bottom);
        } else {