summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Johnson <ajohnson@redneon.com>2016-07-18 18:43:03 +0930
committerAdrian Johnson <ajohnson@redneon.com>2016-07-18 18:43:03 +0930
commitd28b6d9b128675dfa9b3b6b793844144183aff64 (patch)
tree462921c610a4b33fcc5f3c1ba774bf335d825864
parent8a921e6c3ee1cbd7353cd28c23802cfef3e48224 (diff)
pattern: revert an unintentional change added in 190678f
-rw-r--r--src/cairo-pattern.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-pattern.c b/src/cairo-pattern.c
index aa78c324d..1f39c7b55 100644
--- a/src/cairo-pattern.c
+++ b/src/cairo-pattern.c
@@ -3752,7 +3752,7 @@ _cairo_pattern_get_extents (const cairo_pattern_t *pattern,
iy2 = CAIRO_RECT_INT_MAX;
else
iy2 = _cairo_lround (y2);
- extents->y = iy1; extents->height = iy2 - iy1 + 1;
+ extents->y = iy1; extents->height = iy2 - iy1;
if (is_vector && extents->height == 0 && y1 != y2)
extents->height += 1;