* first working version of editing MIDI channels of individual notes, see: http://www.flickr.com/photos/24012642@N02/2412142661/

git-svn-id: svn://localhost/ardour2/branches/3.0@3252 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Hans Baier 2008-04-14 06:23:11 +00:00
parent 2656e0a43b
commit 8b3d298f6b
9 changed files with 239 additions and 13 deletions

View file

@ -433,12 +433,12 @@ CrossfadeEditor::canvas_event (GdkEvent* event)
case GDK_BUTTON_PRESS:
add_control_point ((event->button.x - canvas_border)/effective_width(),
1.0 - ((event->button.y - canvas_border)/effective_height()));
return TRUE;
return true;
break;
default:
break;
}
return FALSE;
return false;
}
CrossfadeEditor::Point::~Point()