summaryrefslogtreecommitdiff
path: root/gtk2_ardour/hit.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-12-28 20:03:38 -0500
committerDavid Robillard <d@drobilla.net>2014-12-28 20:03:38 -0500
commit12b18da8f6f27b804b36169927ec01d688de8d2c (patch)
tree1234314a0068f95e1c41e0e06f3ab0a5e76c4abd /gtk2_ardour/hit.cc
parentb54863c8c3642a918c70f8a0ba0d36993b2f227d (diff)
Fix rect select of hit events.
Diffstat (limited to 'gtk2_ardour/hit.cc')
-rw-r--r--gtk2_ardour/hit.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/hit.cc b/gtk2_ardour/hit.cc
index c7bfcb617f..ab47dee6e8 100644
--- a/gtk2_ardour/hit.cc
+++ b/gtk2_ardour/hit.cc
@@ -102,26 +102,26 @@ Coord
Hit::x0 () const
{
/* left vertex */
- return _polygon->get()[0].x;
+ return _polygon->position().x + _polygon->get()[0].x;
}
Coord
Hit::x1 () const
{
/* right vertex */
- return _polygon->get()[2].x;
+ return _polygon->position().x + _polygon->get()[2].x;
}
Coord
Hit::y0 () const
{
/* top vertex */
- return _polygon->get()[1].y;
+ return _polygon->position().y + _polygon->get()[1].y;
}
Coord
Hit::y1 () const
{
/* bottom vertex */
- return _polygon->get()[3].y;
+ return _polygon->position().y + _polygon->get()[3].y;
}