From c80f890bbc027f712d87480e98a68ff1f21d5b93 Mon Sep 17 00:00:00 2001 From: cth103 Date: Mon, 23 Jan 2006 11:16:41 +0000 Subject: [PATCH] Fix a typo in a previous commit. Closes #1401357. --- src/selection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.30.2