mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
Fix rect select of hit events.
This commit is contained in:
parent
b54863c8c3
commit
12b18da8f6
1 changed files with 4 additions and 4 deletions
|
|
@ -102,26 +102,26 @@ Coord
|
||||||
Hit::x0 () const
|
Hit::x0 () const
|
||||||
{
|
{
|
||||||
/* left vertex */
|
/* left vertex */
|
||||||
return _polygon->get()[0].x;
|
return _polygon->position().x + _polygon->get()[0].x;
|
||||||
}
|
}
|
||||||
|
|
||||||
Coord
|
Coord
|
||||||
Hit::x1 () const
|
Hit::x1 () const
|
||||||
{
|
{
|
||||||
/* right vertex */
|
/* right vertex */
|
||||||
return _polygon->get()[2].x;
|
return _polygon->position().x + _polygon->get()[2].x;
|
||||||
}
|
}
|
||||||
|
|
||||||
Coord
|
Coord
|
||||||
Hit::y0 () const
|
Hit::y0 () const
|
||||||
{
|
{
|
||||||
/* top vertex */
|
/* top vertex */
|
||||||
return _polygon->get()[1].y;
|
return _polygon->position().y + _polygon->get()[1].y;
|
||||||
}
|
}
|
||||||
|
|
||||||
Coord
|
Coord
|
||||||
Hit::y1 () const
|
Hit::y1 () const
|
||||||
{
|
{
|
||||||
/* bottom vertex */
|
/* bottom vertex */
|
||||||
return _polygon->get()[3].y;
|
return _polygon->position().y + _polygon->get()[3].y;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue