From: cth103 Date: Mon, 23 Jan 2006 11:16:41 +0000 (+0000) Subject: Fix a typo in a previous commit. Closes #1401357. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=c80f890bbc027f712d87480e98a68ff1f21d5b93;p=inkscape.git Fix a typo in a previous commit. Closes #1401357. --- diff --git a/src/selection.cpp b/src/selection.cpp index 4c99885eb..aa77ef894 100644 --- a/src/selection.cpp +++ b/src/selection.cpp @@ -290,7 +290,7 @@ NRRect *Selection::bounds(NRRect *bbox) const bbox->x0 = b.min()[NR::X]; bbox->y0 = b.min()[NR::Y]; bbox->x1 = b.max()[NR::X]; - bbox->x1 = b.max()[NR::Y]; + bbox->y1 = b.max()[NR::Y]; return bbox; }