qa: Fix occlusion check coordinates in _XAccessibleComponent.java
This could erroneously skip a check because the child was erroneously deemed obscured by another object. Change-Id: I67d76ea272874671ae328266bdbdeb037c0dc625 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133842 Tested-by: Jenkins Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
This commit is contained in:
parent
cdf70b9099
commit
920558267b
1 changed files with 1 additions and 1 deletions
|
@ -265,7 +265,7 @@ public class _XAccessibleComponent extends MultiMethodTest {
|
|||
chBnd.Y + curY));
|
||||
|
||||
|
||||
Point p = new Point(chBnd.X + curX,chBnd.X + curX);
|
||||
Point p = new Point(chBnd.X + curX,chBnd.Y + curY);
|
||||
|
||||
if (isCovered(p)) {
|
||||
log.println(
|
||||
|
|
Loading…
Reference in a new issue