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

Commit 4976e2de authored by Andreas Gampe's avatar Andreas Gampe
Browse files

Frameworks/base: Fix visibility flag in Editor

Fix double check.

Bug: 19797138
Change-Id: I95e694f384f1f25d6cf3b6a1669052940385e41d
parent 28e6aeca
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3110,7 +3110,7 @@ public class Editor {
                            if (isTopLeftVisible || isBottomRightVisible) {
                                characterBoundsFlags |= CursorAnchorInfo.FLAG_HAS_VISIBLE_REGION;
                            }
                            if (!isTopLeftVisible || !isTopLeftVisible) {
                            if (!isTopLeftVisible || !isBottomRightVisible) {
                                characterBoundsFlags |= CursorAnchorInfo.FLAG_HAS_INVISIBLE_REGION;
                            }
                            if (isRtl) {