mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-21 04:45:58 +01:00
carl's patch for #3471
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@7829 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
d1771add39
commit
a6ca660d61
1 changed files with 4 additions and 4 deletions
|
|
@ -611,8 +611,8 @@ Editor::set_selected_regionview_from_click (bool press, Selection::Operation op,
|
|||
*/
|
||||
|
||||
|
||||
first_frame = entered_regionview->region()->position();
|
||||
last_frame = entered_regionview->region()->last_frame();
|
||||
first_frame = clicked_regionview->region()->position();
|
||||
last_frame = clicked_regionview->region()->last_frame();
|
||||
|
||||
for (RegionSelection::iterator i = selection->regions.begin(); i != selection->regions.end(); ++i) {
|
||||
if ((*i)->region()->position() < first_frame) {
|
||||
|
|
@ -639,9 +639,9 @@ Editor::set_selected_regionview_from_click (bool press, Selection::Operation op,
|
|||
the this one and any selected ones.
|
||||
*/
|
||||
|
||||
if (!selection->selected (entered_regionview)) {
|
||||
if (!selection->selected (clicked_regionview)) {
|
||||
|
||||
AudioTimeAxisView* atv = dynamic_cast<AudioTimeAxisView*> (&entered_regionview->get_time_axis_view());
|
||||
AudioTimeAxisView* atv = dynamic_cast<AudioTimeAxisView*> (&clicked_regionview->get_time_axis_view());
|
||||
|
||||
if (atv) {
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue