Index: Makefile =================================================================== --- Makefile (revision 558887) +++ Makefile (working copy) @@ -3,6 +3,7 @@ PORTNAME= orca PORTVERSION= 3.38.1 +PORTREVISION= 1 CATEGORIES= accessibility gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 Index: files/patch-src_orca_script__utilities.py =================================================================== --- files/patch-src_orca_script__utilities.py (nonexistent) +++ files/patch-src_orca_script__utilities.py (working copy) @@ -0,0 +1,20 @@ +--- src/orca/script_utilities.py.orig 2020-12-03 16:37:05 UTC ++++ src/orca/script_utilities.py +@@ -1968,7 +1968,7 @@ class Utilities: + debug.println(debug.LEVEL_INFO, msg, True) + return False + +- if box.x < 0 and box.y < 0: ++ if box.x < 0 and box.y < 0 and tuple(box) != (-1, -1, -1, -1): + msg = "INFO: %s has negative coordinates" % obj + debug.println(debug.LEVEL_INFO, msg, True) + return False +@@ -1988,7 +1988,7 @@ class Utilities: + if boundingbox is None or not self._boundsIncludeChildren(obj.parent): + return True + +- if not self.containsRegion(box, boundingbox): ++ if not self.containsRegion(box, boundingbox) and tuple(box) != (-1, -1, -1, -1): + msg = "INFO: %s %s not in %s" % (obj, box, boundingbox) + debug.println(debug.LEVEL_INFO, msg, True) + return False